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-information-panel.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-information-panel.c')
-rw-r--r-- | src/caja-information-panel.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/caja-information-panel.c b/src/caja-information-panel.c index 7aa17908..5e7fb3dd 100644 --- a/src/caja-information-panel.c +++ b/src/caja-information-panel.c @@ -49,6 +49,8 @@ #include <libcaja-private/caja-sidebar-provider.h> #include <libcaja-private/caja-module.h> +#include "glibcompat.h" /* for g_list_free_full */ + struct CajaInformationPanelDetails { GtkVBox *container; @@ -1228,8 +1230,7 @@ selection_changed_callback (CajaWindowInfo *window, caja_information_panel_set_uri (panel, uri, name); - g_list_foreach (selection, (GFunc) g_object_unref, NULL); - g_list_free (selection); + g_list_free_full (selection, g_object_unref); g_free (uri); g_free (name); } |