container: Fix GHashTable leak

This commit is contained in:
Seungha Yang 2018-12-27 10:54:28 +09:00
parent f77eb964dd
commit 1ba5911890

View file

@ -390,6 +390,9 @@ _finalize (GObject * object)
g_list_free_full (self->priv->copied_children,
(GDestroyNotify) _free_mapping);
if (self->priv->mappings)
g_hash_table_destroy (self->priv->mappings);
G_OBJECT_CLASS (ges_container_parent_class)->finalize (object);
}