summaryrefslogtreecommitdiff
path: root/src/file-manager/fm-properties-window.c
diff options
context:
space:
mode:
authorStefano Karapetsas <[email protected]>2013-10-06 18:12:22 +0200
committerStefano Karapetsas <[email protected]>2013-10-06 18:12:22 +0200
commit3512eb9905039f0dad597d7591a45b7fa763d2d7 (patch)
tree94e3d2410952aac2658850ada916e52d00337675 /src/file-manager/fm-properties-window.c
parent70559a30ba34d71d0d9567457c3ec20de7d25fb7 (diff)
downloadcaja-3512eb9905039f0dad597d7591a45b7fa763d2d7.tar.bz2
caja-3512eb9905039f0dad597d7591a45b7fa763d2d7.tar.xz
Properly free GHashTable in properties window
Closes #178 https://github.com/mate-desktop/mate-file-manager/issues/178 I had to recover two functions previously removed in eel-glib-extensions.
Diffstat (limited to 'src/file-manager/fm-properties-window.c')
-rw-r--r--src/file-manager/fm-properties-window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/file-manager/fm-properties-window.c b/src/file-manager/fm-properties-window.c
index 854de866..983cfe3b 100644
--- a/src/file-manager/fm-properties-window.c
+++ b/src/file-manager/fm-properties-window.c
@@ -3423,7 +3423,7 @@ get_initial_emblems (GList *files)
ret = g_hash_table_new_full (g_direct_hash,
g_direct_equal,
NULL,
- (GDestroyNotify) g_free);
+ (GDestroyNotify) eel_g_list_free_deep);
for (l = files; l != NULL; l = l->next) {
CajaFile *file;