diff options
Diffstat (limited to 'libcaja-private/caja-dnd.c')
-rw-r--r-- | libcaja-private/caja-dnd.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/libcaja-private/caja-dnd.c b/libcaja-private/caja-dnd.c index feea5ca8..5943f041 100644 --- a/libcaja-private/caja-dnd.c +++ b/libcaja-private/caja-dnd.c @@ -44,6 +44,8 @@ #include <stdio.h> #include <string.h> +#include <src/glibcompat.h> /* for g_list_free_full */ + /* a set of defines stolen from the eel-icon-dnd.c file. * These are in microseconds. */ @@ -129,8 +131,7 @@ caja_drag_uri_array_from_selection_list (const GList *selection_list) uri_list = caja_drag_uri_list_from_selection_list (selection_list); uris = caja_drag_uri_array_from_list (uri_list); - g_list_foreach(uri_list, (GFunc) g_free, NULL); - g_list_free(uri_list); + g_list_free_full (uri_list, g_free); return uris; } @@ -1316,9 +1317,7 @@ slot_proxy_handle_drop (GtkWidget *widget, uri_list, target_uri, gdk_drag_context_get_selected_action (context)); - g_list_foreach(uri_list, (GFunc) g_free, NULL); - g_list_free(uri_list); - + g_list_free_full (uri_list, g_free); } else if (drag_info->info == CAJA_ICON_DND_URI_LIST) { |