diff options
author | Stefano Karapetsas <[email protected]> | 2013-10-06 18:12:22 +0200 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2013-10-06 18:13:34 +0200 |
commit | bd7e0b8c49a423789495678fb65b519c707feed4 (patch) | |
tree | 45295793d3a0f0025cee350b7ac7935cdf5fa9ca /src | |
parent | 73cc7e98f61b2d5f327f26a2e6f4e5004347bf01 (diff) | |
download | caja-bd7e0b8c49a423789495678fb65b519c707feed4.tar.bz2 caja-bd7e0b8c49a423789495678fb65b519c707feed4.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')
-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 a62fbec5..46af0109 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; |