diff options
author | Chris Toshok <toshok@ximian.com> | 2002-09-26 02:50:34 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2002-09-26 02:50:34 +0800 |
commit | 7aaf603811ea4853f71edfbc407ed074588e6d5f (patch) | |
tree | 65a65ef404afeb9df35d31203b0e7570955f486d /addressbook/gui/widgets/e-addressbook-model.c | |
parent | 6a5efeb0f98a88afbbe18af740df7a209bb1c71b (diff) | |
download | gsoc2013-evolution-7aaf603811ea4853f71edfbc407ed074588e6d5f.tar.gz gsoc2013-evolution-7aaf603811ea4853f71edfbc407ed074588e6d5f.tar.zst gsoc2013-evolution-7aaf603811ea4853f71edfbc407ed074588e6d5f.zip |
free adapter->priv.
2002-09-23 Chris Toshok <toshok@ximian.com>
* gui/widgets/e-addressbook-table-adapter.c (addressbook_destroy):
free adapter->priv.
* gui/widgets/e-addressbook-model.c (addressbook_destroy): free
model->query.
* gui/component/select-names/e-select-names-manager.c
(load_completion_books): use e_book_expand_uri here, and free the
expanded uri after calling addressbook_load_uri, plugging a leak.
* gui/component/select-names/e-select-names.c (set_book): unref
esn->model before we unref esn. fixes an edge case memory
corruption bug.
(clear_widget): utility function to set a widget's ref to NULL
when it's destroyed.
(e_select_names_init): hook the status_message, categories option
menu, and select_entry to clear_widget.
(addressbook_model_set_uri): use e_book_expand_uri.
svn path=/trunk/; revision=18217
Diffstat (limited to 'addressbook/gui/widgets/e-addressbook-model.c')
-rw-r--r-- | addressbook/gui/widgets/e-addressbook-model.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/addressbook/gui/widgets/e-addressbook-model.c b/addressbook/gui/widgets/e-addressbook-model.c index 7f59c2313c..9244df8a38 100644 --- a/addressbook/gui/widgets/e-addressbook-model.c +++ b/addressbook/gui/widgets/e-addressbook-model.c @@ -125,6 +125,8 @@ addressbook_destroy(GtkObject *object) gtk_object_unref(GTK_OBJECT(model->book)); model->book = NULL; } + + g_free (model->query); } static void |