rtsp-stream: fix false compiler warning

rtsp-stream.c:3034: error: ‘visited’ may be used uninitialized in this function
This commit is contained in:
Tim-Philipp Müller 2015-01-21 14:57:03 +00:00
parent cc3e0ed39b
commit 6987a00fa9

View file

@ -2811,7 +2811,7 @@ gst_rtsp_stream_transport_filter (GstRTSPStream * stream,
{
GstRTSPStreamPrivate *priv;
GList *result, *walk, *next;
GHashTable *visited;
GHashTable *visited = NULL;
guint cookie;
g_return_val_if_fail (GST_IS_RTSP_STREAM (stream), NULL);