mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-06-19 19:03:00 +02:00
rtsp: Don't use uninitialized data if there are no streams
Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
+1
-1
@@ -1391,7 +1391,7 @@ int ff_rtsp_make_setup_request(AVFormatContext *s, const char *host, int port,
|
||||
goto fail;
|
||||
}
|
||||
|
||||
if (reply->timeout > 0)
|
||||
if (rt->nb_rtsp_streams && reply->timeout > 0)
|
||||
rt->timeout = reply->timeout;
|
||||
|
||||
if (rt->server_type == RTSP_SERVER_REAL)
|
||||
|
||||
Reference in New Issue
Block a user