diff options
author | Milan Crha <mcrha@redhat.com> | 2007-10-05 13:47:10 +0800 |
---|---|---|
committer | Milan Crha <mcrha@src.gnome.org> | 2007-10-05 13:47:10 +0800 |
commit | e093117ef673e80c54e603ee0ed1dbd487a4bcb6 (patch) | |
tree | e5ac65bbf36d179f91b2c22ec7fb8338ed139f50 /calendar/gui | |
parent | e188aba01b54c93555963969f008a04c3ca3fa0b (diff) | |
download | gsoc2013-evolution-e093117ef673e80c54e603ee0ed1dbd487a4bcb6.tar.gz gsoc2013-evolution-e093117ef673e80c54e603ee0ed1dbd487a4bcb6.tar.zst gsoc2013-evolution-e093117ef673e80c54e603ee0ed1dbd487a4bcb6.zip |
Fixed leak caused by my changes in fix for bug #325685.
2007-10-05 Milan Crha <mcrha@redhat.com>
* gui/alarm-notify/alarm-queue.c: (alarm_queue_remove_client):
Fixed leak caused by my changes in fix for bug #325685.
svn path=/trunk/; revision=34357
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/alarm-notify/alarm-queue.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/calendar/gui/alarm-notify/alarm-queue.c b/calendar/gui/alarm-notify/alarm-queue.c index 28550d55f7..b650f2e36b 100644 --- a/calendar/gui/alarm-notify/alarm-queue.c +++ b/calendar/gui/alarm-notify/alarm-queue.c @@ -2167,9 +2167,11 @@ alarm_queue_remove_client (ECal *client, gboolean immediately) msg->data = list; d(printf("%s:%d (alarm_queue_remove_client) - Posting a task\n",__FILE__, __LINE__)); - if (immediately) + if (immediately) { alarm_queue_remove_async (NULL, msg, NULL); - else + g_free (list); + g_free (msg); + } else e_thread_put(alarm_operation_thread, (EMsg *)msg); } |