diff options
author | lukefromdc <[email protected]> | 2016-10-08 16:00:16 -0400 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-10-10 10:35:41 +0200 |
commit | 6e142d59d7408e53ab1e579dba62517b6f59e307 (patch) | |
tree | 890d2045335b2b1d9f383afd917d108cc472d0a1 /libcaja-private/caja-file.c | |
parent | be0f17ff55061ab43636449f4d15a89e418d1f3c (diff) | |
download | caja-6e142d59d7408e53ab1e579dba62517b6f59e307.tar.bz2 caja-6e142d59d7408e53ab1e579dba62517b6f59e307.tar.xz |
Fix hashtable warnings on close
As in Nautilus, use g_hash_table_new rather than eel_g_hash_table_new_free_at_exit
Diffstat (limited to 'libcaja-private/caja-file.c')
-rw-r--r-- | libcaja-private/caja-file.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libcaja-private/caja-file.c b/libcaja-private/caja-file.c index 93a4d17c..6af8a886 100644 --- a/libcaja-private/caja-file.c +++ b/libcaja-private/caja-file.c @@ -552,8 +552,7 @@ modify_link_hash_table (CajaFile *file, /* Create the hash table first time through. */ if (symbolic_links == NULL) { - symbolic_links = eel_g_hash_table_new_free_at_exit - (g_str_hash, g_str_equal, "caja-file.c: symbolic_links"); + symbolic_links = g_hash_table_new (g_str_hash, g_str_equal); } target_uri = caja_file_get_symbolic_link_target_uri (file); |