mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
rtsp-media: unref clock (if set) when finalizing
https://bugzilla.gnome.org/show_bug.cgi?id=796814
This commit is contained in:
parent
e99471a56b
commit
12c2dd6e1c
1 changed files with 2 additions and 0 deletions
|
@ -475,6 +475,8 @@ gst_rtsp_media_finalize (GObject * obj)
|
|||
g_object_unref (priv->pool);
|
||||
if (priv->payloads)
|
||||
g_list_free (priv->payloads);
|
||||
if (priv->clock)
|
||||
gst_object_unref (priv->clock);
|
||||
g_free (priv->multicast_iface);
|
||||
g_mutex_clear (&priv->lock);
|
||||
g_cond_clear (&priv->cond);
|
||||
|
|
Loading…
Reference in a new issue