mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 04:36:20 +00:00
container: Fix wrong finalize() usage
finalize must chain up to parent's finalize(), not dispose()
This commit is contained in:
parent
acbd7e7bc5
commit
f77eb964dd
1 changed files with 1 additions and 1 deletions
|
@ -390,7 +390,7 @@ _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);
|
||||||
|
|
||||||
G_OBJECT_CLASS (ges_container_parent_class)->dispose (object);
|
G_OBJECT_CLASS (ges_container_parent_class)->finalize (object);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|
Loading…
Reference in a new issue