mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
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
1 changed files with 1 additions and 1 deletions
|
@ -2811,7 +2811,7 @@ gst_rtsp_stream_transport_filter (GstRTSPStream * stream,
|
||||||
{
|
{
|
||||||
GstRTSPStreamPrivate *priv;
|
GstRTSPStreamPrivate *priv;
|
||||||
GList *result, *walk, *next;
|
GList *result, *walk, *next;
|
||||||
GHashTable *visited;
|
GHashTable *visited = NULL;
|
||||||
guint cookie;
|
guint cookie;
|
||||||
|
|
||||||
g_return_val_if_fail (GST_IS_RTSP_STREAM (stream), NULL);
|
g_return_val_if_fail (GST_IS_RTSP_STREAM (stream), NULL);
|
||||||
|
|
Loading…
Reference in a new issue