diff options
author | Chris Toshok <toshok@ximian.com> | 2004-06-23 02:55:45 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2004-06-23 02:55:45 +0800 |
commit | fe72753fe028ef628b38776829e9dd771064bb41 (patch) | |
tree | 90ebbbd80046b1b3a5cbd4febb3a75ea5bb4825d /addressbook | |
parent | 0d450111c88e4b14f8a21def8c5453002a027191 (diff) | |
download | gsoc2013-evolution-fe72753fe028ef628b38776829e9dd771064bb41.tar.gz gsoc2013-evolution-fe72753fe028ef628b38776829e9dd771064bb41.tar.zst gsoc2013-evolution-fe72753fe028ef628b38776829e9dd771064bb41.zip |
[ 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
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/ChangeLog | 7 | ||||
-rw-r--r-- | addressbook/gui/widgets/eab-popup-control.c | 5 |
2 files changed, 7 insertions, 5 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 082e4320ff..aee73975f1 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -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): diff --git a/addressbook/gui/widgets/eab-popup-control.c b/addressbook/gui/widgets/eab-popup-control.c index cf2190ea5d..d1592d4627 100644 --- a/addressbook/gui/widgets/eab-popup-control.c +++ b/addressbook/gui/widgets/eab-popup-control.c @@ -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); } } |