rtsp-stream: fix false compiler warning
rtsp-stream.c:3034: error: ‘visited’ may be used uninitialized in this function
This commit is contained in:
parent
cc3e0ed39b
commit
6987a00fa9
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user