diff options
author | Larry Ewing <lewing@ximian.com> | 2001-09-18 11:25:33 +0800 |
---|---|---|
committer | Larry Ewing <lewing@src.gnome.org> | 2001-09-18 11:25:33 +0800 |
commit | 7c6775102c17cffea667c17fcb8cbc37d75c52d9 (patch) | |
tree | 8b09b77df60ee6d07ab91310eb880f287a86eaf2 | |
parent | 65c6a6de0d2a37bcfee87083239072a363ce22cd (diff) | |
download | gsoc2013-evolution-7c6775102c17cffea667c17fcb8cbc37d75c52d9.tar gsoc2013-evolution-7c6775102c17cffea667c17fcb8cbc37d75c52d9.tar.gz gsoc2013-evolution-7c6775102c17cffea667c17fcb8cbc37d75c52d9.tar.bz2 gsoc2013-evolution-7c6775102c17cffea667c17fcb8cbc37d75c52d9.tar.lz gsoc2013-evolution-7c6775102c17cffea667c17fcb8cbc37d75c52d9.tar.xz gsoc2013-evolution-7c6775102c17cffea667c17fcb8cbc37d75c52d9.tar.zst gsoc2013-evolution-7c6775102c17cffea667c17fcb8cbc37d75c52d9.zip |
free the dup'd capabilities.
2001-09-17 Larry Ewing <lewing@ximian.com>
* gui/widgets/e-addressbook-model.c (get_view): free the dup'd
capabilities.
svn path=/trunk/; revision=12933
-rw-r--r-- | addressbook/ChangeLog | 6 | ||||
-rw-r--r-- | addressbook/gui/widgets/e-addressbook-model.c | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 81712a455a..be945f6bb3 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,8 @@ +2001-09-17 Larry Ewing <lewing@ximian.com> + + * gui/widgets/e-addressbook-model.c (get_view): free the dup'd + capabilities. + 2001-09-17 Jon Trowbridge <trow@ximian.com> * backend/ebook/e-destination.c (e_destination_is_valid): We want @@ -19,6 +24,7 @@ assumed that event->button.button is 1, 2, or 3, causing disaster when using a wheel-mouse. Fixed. (bug #9400) +>>>>>>> 1.776 2001-09-16 Chris Toshok <toshok@ximian.com> * gui/contact-editor/e-contact-editor.c (_phone_arrow_pressed): diff --git a/addressbook/gui/widgets/e-addressbook-model.c b/addressbook/gui/widgets/e-addressbook-model.c index e43772abf8..d3c59fbcfd 100644 --- a/addressbook/gui/widgets/e-addressbook-model.c +++ b/addressbook/gui/widgets/e-addressbook-model.c @@ -405,6 +405,7 @@ get_view (EAddressbookModel *model) e_book_get_book_view (model->book, model->query, book_view_loaded, model); } model->first_get_view = FALSE; + g_free (capabilities); } else e_book_get_book_view (model->book, model->query, book_view_loaded, model); |