aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui
diff options
context:
space:
mode:
Diffstat (limited to 'calendar/gui')
-rw-r--r--calendar/gui/e-tasks.c3
-rw-r--r--calendar/gui/gnome-cal.c3
-rw-r--r--calendar/gui/migration.c3
3 files changed, 9 insertions, 0 deletions
diff --git a/calendar/gui/e-tasks.c b/calendar/gui/e-tasks.c
index 78ce565da1..1d1c405c0d 100644
--- a/calendar/gui/e-tasks.c
+++ b/calendar/gui/e-tasks.c
@@ -1159,6 +1159,9 @@ e_tasks_delete_completed (ETasks *tasks)
/* FIXME Better error handling */
e_cal_remove_object (client, icalcomponent_get_uid (m->data), NULL);
}
+
+ g_list_foreach (objects, (GFunc) icalcomponent_free, NULL);
+ g_list_free (objects);
}
set_status_message (tasks, NULL);
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);
diff --git a/calendar/gui/migration.c b/calendar/gui/migration.c
index fb8f0b2f8c..f15efce53b 100644
--- a/calendar/gui/migration.c
+++ b/calendar/gui/migration.c
@@ -299,6 +299,9 @@ migrate_ical (ECal *old_ecal, ECal *new_ecal)
dialog_set_progress ((double)num_added / num_objects);
}
+ g_list_foreach (objects, (GFunc) icalcomponent_free, NULL);
+ g_list_free (objects);
+
return retval;
}