summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2022-05-20 00:50:33 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2022-09-26 16:50:48 +0200
commitbb8e5b221f0797762dd31f961f6d7c0672eb9abd (patch)
treef8b95a381b9b99b293be7f32309dfd1169d5e828 /libavformat
parent4b668fbf7e6d7caee137205752416c98f4a1d0f3 (diff)
downloadffmpeg-bb8e5b221f0797762dd31f961f6d7c0672eb9abd.tar.gz
avformat/rtsp: break on unknown protocols
This function needs more cleanup and it lacks error handling Fixes: use of uninitialized memory Fixes: CID700776 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 73c0fd27c5c53c42e5060fb3a0c1fc5708b6f670) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/rtsp.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c
index 5d8491b74b..973d6a5bb7 100644
--- a/libavformat/rtsp.c
+++ b/libavformat/rtsp.c
@@ -931,6 +931,8 @@ static void rtsp_parse_transport(AVFormatContext *s,
";,", &p);
}
th->transport = RTSP_TRANSPORT_RAW;
+ } else {
+ break;
}
if (!av_strcasecmp(lower_transport, "TCP"))
th->lower_transport = RTSP_LOWER_TRANSPORT_TCP;