mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 05:12:09 +00:00
rtsp-client: unref 'pipelined_requests' in finalize
The hash table priv->pipelined_requests is not unref:ed in the finalize funktion. Make sure it is. https://bugzilla.gnome.org/show_bug.cgi?id=788704
This commit is contained in:
parent
8608c1cae4
commit
619ac7b710
1 changed files with 1 additions and 0 deletions
|
@ -696,6 +696,7 @@ gst_rtsp_client_finalize (GObject * obj)
|
|||
g_assert (priv->session_removed_id == 0);
|
||||
|
||||
g_hash_table_unref (priv->transports);
|
||||
g_hash_table_unref (priv->pipelined_requests);
|
||||
|
||||
if (priv->connection)
|
||||
gst_rtsp_connection_free (priv->connection);
|
||||
|
|
Loading…
Reference in a new issue