Mercurial > pidgin.yaz
changeset 28541:7e40fef28347
Fix two more cases of GError not being initialized to NULL
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Thu, 03 Sep 2009 20:50:12 +0000 |
parents | 5ceac3a20b93 |
children | fc8588914c1d |
files | pidgin/plugins/gevolution/eds-utils.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/pidgin/plugins/gevolution/eds-utils.c Thu Sep 03 20:38:12 2009 +0000 +++ b/pidgin/plugins/gevolution/eds-utils.c Thu Sep 03 20:50:12 2009 +0000 @@ -53,7 +53,7 @@ gevo_addrbooks_model_populate(GtkTreeModel *model) { ESourceList *addressbooks; - GError *err; + GError *err = NULL; GSList *groups, *g; GtkTreeIter iter; GtkListStore *list; @@ -173,7 +173,7 @@ gevo_search_buddy_in_contacts(PurpleBuddy *buddy, EBookQuery *query) { ESourceList *addressbooks; - GError *err; + GError *err = NULL; EBookQuery *full_query; GSList *groups, *g; EContact *result;