mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-12 17:25:36 +00:00
container: Fix GHashTable leak
This commit is contained in:
parent
f77eb964dd
commit
1ba5911890
1 changed files with 3 additions and 0 deletions
|
@ -390,6 +390,9 @@ _finalize (GObject * object)
|
||||||
g_list_free_full (self->priv->copied_children,
|
g_list_free_full (self->priv->copied_children,
|
||||||
(GDestroyNotify) _free_mapping);
|
(GDestroyNotify) _free_mapping);
|
||||||
|
|
||||||
|
if (self->priv->mappings)
|
||||||
|
g_hash_table_destroy (self->priv->mappings);
|
||||||
|
|
||||||
G_OBJECT_CLASS (ges_container_parent_class)->finalize (object);
|
G_OBJECT_CLASS (ges_container_parent_class)->finalize (object);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue