# HG changeset patch # User Mark Doliner # Date 1252011012 0 # Node ID 7e40fef28347765c481a55508c4bc69a77b97ee7 # Parent 5ceac3a20b932069d382e3c717b963d3cbe146ef Fix two more cases of GError not being initialized to NULL diff -r 5ceac3a20b93 -r 7e40fef28347 pidgin/plugins/gevolution/eds-utils.c --- 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;