From 00ae999547687b7cd3eeb8c7e8fbbca801913206 Mon Sep 17 00:00:00 2001 From: Justin Kim Date: Thu, 24 Sep 2015 13:42:16 +0900 Subject: [PATCH] pitivi-formatter: don't leak internal hash table https://bugzilla.gnome.org/show_bug.cgi?id=755505 --- ges/ges-pitivi-formatter.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ges/ges-pitivi-formatter.c b/ges/ges-pitivi-formatter.c index 58716d0..8e7b5d3 100644 --- a/ges/ges-pitivi-formatter.c +++ b/ges/ges-pitivi-formatter.c @@ -689,6 +689,7 @@ ges_pitivi_formatter_finalize (GObject * object) if (priv->clips_table != NULL) { g_hash_table_foreach (priv->clips_table, (GHFunc) list_table_destroyer, NULL); + g_hash_table_destroy (priv->clips_table); } if (priv->layers_table != NULL) -- 2.7.4