diff options
author | Stefano Karapetsas <[email protected]> | 2013-10-06 18:12:22 +0200 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2013-10-06 18:12:22 +0200 |
commit | 3512eb9905039f0dad597d7591a45b7fa763d2d7 (patch) | |
tree | 94e3d2410952aac2658850ada916e52d00337675 /src/file-manager | |
parent | 70559a30ba34d71d0d9567457c3ec20de7d25fb7 (diff) | |
download | caja-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')
-rw-r--r-- | src/file-manager/fm-properties-window.c | 2 |
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; |