diff options
author | Rodrigo Moya <rodrigo@novell.com> | 2005-04-05 03:48:18 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2005-04-05 03:48:18 +0800 |
commit | 2bfb0aacbd3290d801257ad8a8a850e5dbe26b67 (patch) | |
tree | 7f9b9b791b2ba307a0bf06eb94c42affa552e4f6 /calendar/gui/gnome-cal.c | |
parent | 01e949631917f56eab0e44acae992df7feea3c86 (diff) | |
download | gsoc2013-evolution-2bfb0aacbd3290d801257ad8a8a850e5dbe26b67.tar.gz gsoc2013-evolution-2bfb0aacbd3290d801257ad8a8a850e5dbe26b67.tar.zst gsoc2013-evolution-2bfb0aacbd3290d801257ad8a8a850e5dbe26b67.zip |
Fixes #68423
2005-04-04 Rodrigo Moya <rodrigo@novell.com>
Fixes #68423
* gui/migration.c (migrate_ical):
* gui/e-tasks,c (e_tasks_expunge):
* gui/gnome-cal.c (gnome_calendar_purge): fixed huge (in some cases)
memory leaks.
svn path=/trunk/; revision=29151
Diffstat (limited to 'calendar/gui/gnome-cal.c')
-rw-r--r-- | calendar/gui/gnome-cal.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/calendar/gui/gnome-cal.c b/calendar/gui/gnome-cal.c index c515dc36e9..c36b740d81 100644 --- a/calendar/gui/gnome-cal.c +++ b/calendar/gui/gnome-cal.c @@ -3267,6 +3267,9 @@ gnome_calendar_purge (GnomeCalendar *gcal, time_t older_than) if (remove) e_cal_remove_object (client, icalcomponent_get_uid (m->data), NULL); } + + g_list_foreach (objects, (GFunc) icalcomponent_free, NULL); + g_list_free (objects); } e_calendar_view_set_status_message (E_CALENDAR_VIEW (priv->week_view), NULL); |