mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-06 22:42:35 +00:00
audiobasesink: Fix of double lock release
Add missing "return;" which prevents double lock release. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-base/-/merge_requests/1208>
This commit is contained in:
parent
e5382fe84c
commit
ba4f031864
1 changed files with 1 additions and 0 deletions
|
@ -2350,6 +2350,7 @@ eos:
|
||||||
gst_element_post_message (GST_ELEMENT_CAST (sink),
|
gst_element_post_message (GST_ELEMENT_CAST (sink),
|
||||||
gst_message_new_eos (GST_OBJECT_CAST (sink)));
|
gst_message_new_eos (GST_OBJECT_CAST (sink)));
|
||||||
GST_PAD_STREAM_UNLOCK (basesink->sinkpad);
|
GST_PAD_STREAM_UNLOCK (basesink->sinkpad);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
flushing:
|
flushing:
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue