Mercurial > pidgin.yaz
diff pidgin/plugins/gevolution/eds-utils.c @ 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 | 9e916fd25f48 |
| children | a8cc50c2279f |
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;
