diff options
author | Larry Ewing <lewing@ximian.com> | 2001-09-20 04:42:49 +0800 |
---|---|---|
committer | Larry Ewing <lewing@src.gnome.org> | 2001-09-20 04:42:49 +0800 |
commit | 28b4ae90d788b6bbce25ef7b887c96dfa952e5fb (patch) | |
tree | c674013155f8060c0e52ee3b5d1232077f8bd823 /my-evolution/e-summary-tasks.c | |
parent | 11c1a83ffcae03776ff109e6ac085c1975af4b29 (diff) | |
download | gsoc2013-evolution-28b4ae90d788b6bbce25ef7b887c96dfa952e5fb.tar.gz gsoc2013-evolution-28b4ae90d788b6bbce25ef7b887c96dfa952e5fb.tar.zst gsoc2013-evolution-28b4ae90d788b6bbce25ef7b887c96dfa952e5fb.zip |
be sure to unref the component.
2001-09-19 Larry Ewing <lewing@ximian.com>
* e-summary-tasks.c (generate_html): be sure to unref the
component.
svn path=/trunk/; revision=12987
Diffstat (limited to 'my-evolution/e-summary-tasks.c')
-rw-r--r-- | my-evolution/e-summary-tasks.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/my-evolution/e-summary-tasks.c b/my-evolution/e-summary-tasks.c index 5108e909a1..18e92b86fe 100644 --- a/my-evolution/e-summary-tasks.c +++ b/my-evolution/e-summary-tasks.c @@ -261,9 +261,11 @@ generate_html (gpointer data) text.value); #endif cal_component_free_icaltimetype (completed); + gtk_object_unref (comp); continue; } + gtk_object_unref (comp); g_string_append (string, tmp); g_free (tmp); } |