mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
stream-transport: free url in finalize
This commit is contained in:
parent
3b4894c4f1
commit
9473fa0d2c
1 changed files with 3 additions and 0 deletions
|
@ -121,6 +121,9 @@ gst_rtsp_stream_transport_finalize (GObject * obj)
|
|||
if (priv->transport)
|
||||
gst_rtsp_transport_free (priv->transport);
|
||||
|
||||
if (priv->url)
|
||||
gst_rtsp_url_free (priv->url);
|
||||
|
||||
G_OBJECT_CLASS (gst_rtsp_stream_transport_parent_class)->finalize (obj);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue