mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-09-03 10:43:55 +00:00
subparse: GstAdapter is not a GstObject and should be freed with g_object_unref
This commit is contained in:
parent
95af14d7bc
commit
889c318798
1 changed files with 1 additions and 1 deletions
|
@ -150,7 +150,7 @@ gst_sub_parse_dispose (GObject * object)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (subparse->adapter) {
|
if (subparse->adapter) {
|
||||||
gst_object_unref (subparse->adapter);
|
g_object_unref (subparse->adapter);
|
||||||
subparse->adapter = NULL;
|
subparse->adapter = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue