From b00cccb74307a49df74deb785936e3cd9cf3a5ad Mon Sep 17 00:00:00 2001 From: Jasmine Hassan Date: Fri, 23 Nov 2012 11:18:34 +0200 Subject: [all] include src/glibcompat.h & use g_list_free_full() where needed Also fixes a double-free regression in lc-p/caja-query from 7a42b9b0 --- src/caja-history-sidebar.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/caja-history-sidebar.c') diff --git a/src/caja-history-sidebar.c b/src/caja-history-sidebar.c index b69dce51..72993d73 100644 --- a/src/caja-history-sidebar.c +++ b/src/caja-history-sidebar.c @@ -40,6 +40,8 @@ #include "caja-history-sidebar.h" +#include "glibcompat.h" /* for g_list_free_full */ + #define CAJA_HISTORY_SIDEBAR_CLASS(klass) \ (G_TYPE_CHECK_CLASS_CAST ((klass), CAJA_TYPE_HISTORY_SIDEBAR, CajaHistorySidebarClass)) #define CAJA_IS_HISTORY_SIDEBAR(obj) \ @@ -121,8 +123,7 @@ update_history (CajaHistorySidebar *sidebar) } g_free (name); } - g_list_foreach(history, (GFunc) g_object_unref, NULL); - g_list_free(history); + g_list_free_full (history, g_object_unref); selection = GTK_TREE_SELECTION (gtk_tree_view_get_selection (sidebar->tree_view)); -- cgit v1.2.1