diff options
-rw-r--r-- | my-evolution/ChangeLog | 5 | ||||
-rw-r--r-- | my-evolution/e-summary-tasks.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/my-evolution/ChangeLog b/my-evolution/ChangeLog index c6896838ff..c253403435 100644 --- a/my-evolution/ChangeLog +++ b/my-evolution/ChangeLog @@ -1,3 +1,8 @@ +2001-09-19 Larry Ewing <lewing@ximian.com> + + * e-summary-tasks.c (generate_html): be sure to unref the + component. + 2001-09-19 Iain Holmes <iain@ximian.com> * e-summary-tasks.c (e_summary_tasks_protocol): Open a task editor. 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); } |