diff options
author | Milan Crha <mcrha@redhat.com> | 2010-02-22 22:50:20 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2010-02-22 22:50:20 +0800 |
commit | bbb08e87168941969197954765bd234f36897670 (patch) | |
tree | 4a37022b055f1f493782ca35183f0e55fe50aea6 /calendar/gui | |
parent | a1313ce499a9202fd09ea167b66e36288548f3e6 (diff) | |
download | gsoc2013-evolution-bbb08e87168941969197954765bd234f36897670.tar gsoc2013-evolution-bbb08e87168941969197954765bd234f36897670.tar.gz gsoc2013-evolution-bbb08e87168941969197954765bd234f36897670.tar.bz2 gsoc2013-evolution-bbb08e87168941969197954765bd234f36897670.tar.lz gsoc2013-evolution-bbb08e87168941969197954765bd234f36897670.tar.xz gsoc2013-evolution-bbb08e87168941969197954765bd234f36897670.tar.zst gsoc2013-evolution-bbb08e87168941969197954765bd234f36897670.zip |
Bug #602396 - Crashed on Reply to all in meeting pop up menu
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/itip-utils.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/calendar/gui/itip-utils.c b/calendar/gui/itip-utils.c index 804f5e004a..9fe0f1bdb6 100644 --- a/calendar/gui/itip-utils.c +++ b/calendar/gui/itip-utils.c @@ -608,9 +608,8 @@ comp_to_list (ECalComponentItipMethod method, ECalComponent *comp, GList *users, if (array == NULL) return NULL; - convert.pdata = array->pdata; g_ptr_array_add (array, NULL); - g_ptr_array_free (array, FALSE); + convert.pdata = g_ptr_array_free (array, FALSE); return convert.destinations; } |