diff options
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/itip-utils.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/calendar/gui/itip-utils.c b/calendar/gui/itip-utils.c index 36ddbea045..a9fac69138 100644 --- a/calendar/gui/itip-utils.c +++ b/calendar/gui/itip-utils.c @@ -1016,6 +1016,11 @@ itip_send_comp (ECalComponentItipMethod method, ECalComponent *send_comp, if (top_level != NULL) icalcomponent_free (top_level); + if (users) { + g_list_foreach (users, (GFunc) g_free, NULL); + g_list_free (users); + } + if (to_list != NULL) CORBA_free (to_list); if (cc_list != NULL) |