From e093117ef673e80c54e603ee0ed1dbd487a4bcb6 Mon Sep 17 00:00:00 2001 From: Milan Crha Date: Fri, 5 Oct 2007 05:47:10 +0000 Subject: Fixed leak caused by my changes in fix for bug #325685. 2007-10-05 Milan Crha * 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 --- calendar/gui/alarm-notify/alarm-queue.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'calendar/gui/alarm-notify') 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); } -- cgit v1.2.3