[ should fix #60495, #58635 ] don't free the list of contacts - libebook

2004-06-22  Chris Toshok  <toshok@ximian.com>

	[ should fix #60495, #58635 ]
	* gui/widgets/eab-popup-control.c (name_only_query_cb): don't free
	the list of contacts - libebook still owns it.
	(query_cb): same.

svn path=/trunk/; revision=26453
This commit is contained in:
Chris Toshok
2004-06-22 18:55:45 +00:00
committed by Chris Toshok
parent 0d450111c8
commit fe72753fe0
2 changed files with 7 additions and 5 deletions

View File

@ -1,3 +1,10 @@
2004-06-22 Chris Toshok <toshok@ximian.com>
[ should fix #60495, #58635 ]
* gui/widgets/eab-popup-control.c (name_only_query_cb): don't free
the list of contacts - libebook still owns it.
(query_cb): same.
2004-06-22 Larry Ewing <lewing@ximian.com>
* gui/contact-list-editor/e-contact-list-editor.c (add_email_cb):

View File

@ -1046,8 +1046,6 @@ name_only_query_cb (EBook *book, EBookStatus status, GList *contacts, gpointer c
eab_popup_control_no_matches (pop);
} else {
eab_popup_control_ambiguous_email_add (pop, contacts);
g_list_foreach (contacts, (GFunc)g_object_unref, NULL);
g_list_free (contacts);
}
}
@ -1081,9 +1079,6 @@ query_cb (EBook *book, EBookStatus status, GList *contacts, gpointer closure)
eab_popup_control_display_contact (pop, E_CONTACT (contacts->data));
else
eab_popup_control_multiple_matches (pop, contacts);
g_list_foreach (contacts, (GFunc)g_object_unref, NULL);
g_list_free (contacts);
}
}