Fix leak
authorColin Leroy <colin@colino.net>
Tue, 20 May 2014 13:38:05 +0000 (15:38 +0200)
committerColin Leroy <colin@colino.net>
Tue, 20 May 2014 13:38:05 +0000 (15:38 +0200)
src/plugins/notification/notification_core.c

index d797b8402bc07463e811b90e963cd181cd584813..69bdf31829b40bb42ec0cefeb536df83abcb4a19 100644 (file)
@@ -177,6 +177,8 @@ GSList* get_flat_gslist_from_nodes(GNode *node)
 void notification_core_get_msg_count_of_foldername(gchar *foldername, NotificationMsgCount *count)
 {
   GList *list;
+  GSList *f_list;
+
   Folder *walk_folder;
   Folder *folder = NULL;
 
@@ -193,7 +195,9 @@ void notification_core_get_msg_count_of_foldername(gchar *foldername, Notificati
   }
 
   msg_count_clear(count);
-  notification_core_get_msg_count(get_flat_gslist_from_nodes(folder->node), count);
+  f_list = get_flat_gslist_from_nodes(folder->node);
+  notification_core_get_msg_count(f_list, count);
+  g_slist_free(f_list);
 }
 
 void notification_core_get_msg_count(GSList *folder_list,