diff options
author | Jasmine Hassan <[email protected]> | 2012-11-23 11:18:34 +0200 |
---|---|---|
committer | Jasmine Hassan <[email protected]> | 2012-11-23 11:18:34 +0200 |
commit | b00cccb74307a49df74deb785936e3cd9cf3a5ad (patch) | |
tree | f2bcc459a2bef12678e642d0a14ce7f02373b71d /src/caja-window-slot.c | |
parent | b12a7f6ea3309ecddfc7e3ae839a7b558c862533 (diff) | |
download | caja-b00cccb74307a49df74deb785936e3cd9cf3a5ad.tar.bz2 caja-b00cccb74307a49df74deb785936e3cd9cf3a5ad.tar.xz |
[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
Diffstat (limited to 'src/caja-window-slot.c')
-rw-r--r-- | src/caja-window-slot.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/caja-window-slot.c b/src/caja-window-slot.c index 5d87a60f..0fe2375b 100644 --- a/src/caja-window-slot.c +++ b/src/caja-window-slot.c @@ -33,6 +33,8 @@ #include <eel/eel-gtk-macros.h> #include <eel/eel-string.h> +#include "glibcompat.h" /* for g_list_free_full */ + static void caja_window_slot_init (CajaWindowSlot *slot); static void caja_window_slot_class_init (CajaWindowSlotClass *class); static void caja_window_slot_dispose (GObject *object); @@ -662,8 +664,7 @@ caja_window_slot_dispose (GObject *object) g_object_ref (slot->location); } - g_list_foreach(slot->pending_selection, (GFunc) g_free, NULL); - g_list_free(slot->pending_selection); + g_list_free_full (slot->pending_selection, g_free); slot->pending_selection = NULL; if (slot->current_location_bookmark != NULL) |