From d4bf1f13cff4590e5a9ad637e4c15fe61d4ba4be Mon Sep 17 00:00:00 2001 From: Sergio Villar Senin Date: Mon, 27 Jul 2009 16:17:21 +0200 Subject: [PATCH] Fixes NB#128529, fixes a memory leak in the Notification data --- src/modest-utils.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/modest-utils.c b/src/modest-utils.c index 4447e5e..3080b67 100644 --- a/src/modest-utils.c +++ b/src/modest-utils.c @@ -1131,6 +1131,8 @@ free_notification_data (gpointer data, g_free (notification_data->from); g_free (notification_data->subject); g_free (notification_data->uri); + + g_slice_free (ModestMsgNotificationData, notification_data); } void -- 1.7.9.5