mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 23:06:49 +00:00
stream: release some locks in error cases
This commit is contained in:
parent
81a2928c89
commit
48b6b8e3e6
1 changed files with 4 additions and 0 deletions
|
@ -597,16 +597,19 @@ gst_rtsp_stream_is_transport_supported (GstRTSPStream * stream,
|
|||
unsupported_transmode:
|
||||
{
|
||||
GST_DEBUG ("unsupported transport mode %d", transport->trans);
|
||||
g_mutex_unlock (&priv->lock);
|
||||
return FALSE;
|
||||
}
|
||||
unsupported_profile:
|
||||
{
|
||||
GST_DEBUG ("unsupported profile %d", transport->profile);
|
||||
g_mutex_unlock (&priv->lock);
|
||||
return FALSE;
|
||||
}
|
||||
unsupported_ltrans:
|
||||
{
|
||||
GST_DEBUG ("unsupported lower transport %d", transport->lower_transport);
|
||||
g_mutex_unlock (&priv->lock);
|
||||
return FALSE;
|
||||
}
|
||||
}
|
||||
|
@ -1854,6 +1857,7 @@ gst_rtsp_stream_leave_bin (GstRTSPStream * stream, GstBin * bin,
|
|||
|
||||
was_not_joined:
|
||||
{
|
||||
g_mutex_unlock (&priv->lock);
|
||||
return TRUE;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue