inotify: fix a memleak
authorCosimo Cecchi <cosimoc@gnome.org>
Sun, 20 Jan 2013 18:12:49 +0000 (13:12 -0500)
committerCosimo Cecchi <cosimoc@gnome.org>
Mon, 21 Jan 2013 14:51:09 +0000 (09:51 -0500)
https://bugzilla.gnome.org/show_bug.cgi?id=692201

gio/inotify/inotify-path.c

index 27e9756..4025837 100644 (file)
@@ -414,6 +414,7 @@ ip_watched_dir_free (ip_watched_dir_t *dir)
   g_assert_cmpint (g_hash_table_size (dir->files_hash), ==, 0);
   g_assert (dir->subs == NULL);
   g_free (dir->path);
+  g_hash_table_unref (dir->files_hash);
   g_free (dir);
 }