rtspconnection: Unset input/output_stream after freeing the GIOStream

watch->input_stream and watch->output_stream are owned by the GIOStream
and should be unset after freeing the stream.

https://bugzilla.gnome.org/show_bug.cgi?id=708689
This commit is contained in:
Ognyan Tonchev 2013-09-24 16:26:37 +02:00 committed by Sebastian Dröge
parent f1d074ac39
commit 02ac18b699

View file

@ -2037,6 +2037,10 @@ gst_rtsp_connection_close (GstRTSPConnection * conn)
conn->socket1 = NULL;
}
/* these were owned by the stream */
conn->input_stream = NULL;
conn->output_stream = NULL;
g_free (conn->remote_ip);
conn->remote_ip = NULL;
g_free (conn->local_ip);