mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
splitmuxsink: fix mutex leak
This commit is contained in:
parent
a51073c7de
commit
a862db33b6
1 changed files with 1 additions and 0 deletions
|
@ -248,6 +248,7 @@ gst_splitmux_sink_finalize (GObject * object)
|
|||
{
|
||||
GstSplitMuxSink *splitmux = GST_SPLITMUX_SINK (object);
|
||||
g_cond_clear (&splitmux->data_cond);
|
||||
g_mutex_clear (&splitmux->lock);
|
||||
if (splitmux->provided_sink)
|
||||
gst_object_unref (splitmux->provided_sink);
|
||||
if (splitmux->provided_muxer)
|
||||
|
|
Loading…
Reference in a new issue