diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-12-15 04:40:56 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-12-15 04:40:56 +0800 |
commit | 579a645c95eb46808c623a2f044d222890f0c2e9 (patch) | |
tree | 3ea6e55af02cd147937c05b35676bd31f5c2ea41 | |
parent | f65f3559fc25acff99473a2adac7f249418c2f77 (diff) | |
download | gsoc2013-evolution-579a645c95eb46808c623a2f044d222890f0c2e9.tar.gz gsoc2013-evolution-579a645c95eb46808c623a2f044d222890f0c2e9.tar.zst gsoc2013-evolution-579a645c95eb46808c623a2f044d222890f0c2e9.zip |
Unref the iterator when we're done with it.
2000-12-14 Christopher James Lahey <clahey@helixcode.com>
* mail-threads.c (update_active_views): Unref the iterator when
we're done with it.
svn path=/trunk/; revision=7029
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/mail-threads.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index bbac0c2507..0108799e21 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2000-12-14 Christopher James Lahey <clahey@helixcode.com> + + * mail-threads.c (update_active_views): Unref the iterator when + we're done with it. + 2000-12-14 Larry Ewing <lewing@helixcode.com> * mail-display.c (mail_display_new): call diff --git a/mail/mail-threads.c b/mail/mail-threads.c index 1e33be693c..4b989bb762 100644 --- a/mail/mail-threads.c +++ b/mail/mail-threads.c @@ -1119,6 +1119,7 @@ update_active_views (void) CORBA_exception_free (&ev); } + gtk_object_unref(GTK_OBJECT(it)); } static void |