summaryrefslogtreecommitdiffstats
path: root/libavformat/rtsp.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2019-01-25 21:30:04 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2019-01-31 17:33:50 +0100
commit497c9b0cce559d43607bbbd679fe42f1d7e9040e (patch)
tree5b9518debb3e18f7908936d8ae1de82786d2b116 /libavformat/rtsp.c
parenta53c4f3689996f6090078f36de32bce1744f395b (diff)
downloadffmpeg-streaming-497c9b0cce559d43607bbbd679fe42f1d7e9040e.zip
ffmpeg-streaming-497c9b0cce559d43607bbbd679fe42f1d7e9040e.tar.gz
avformat/rtsp: Check number of streams in sdp_parse_line()
Fixes: OOM Found-by: Michael Hanselmann <public@hansmi.ch> Reviewed-by: Michael Hanselmann <public@hansmi.ch> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat/rtsp.c')
-rw-r--r--libavformat/rtsp.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c
index 82c6c12..975637c 100644
--- a/libavformat/rtsp.c
+++ b/libavformat/rtsp.c
@@ -454,7 +454,10 @@ static void sdp_parse_line(AVFormatContext *s, SDPParseState *s1,
} else if (!strcmp(st_type, "text")) {
codec_type = AVMEDIA_TYPE_SUBTITLE;
}
- if (codec_type == AVMEDIA_TYPE_UNKNOWN || !(rt->media_type_mask & (1 << codec_type))) {
+ if (codec_type == AVMEDIA_TYPE_UNKNOWN ||
+ !(rt->media_type_mask & (1 << codec_type)) ||
+ rt->nb_rtsp_streams >= s->max_streams
+ ) {
s1->skip_media = 1;
return;
}
OpenPOWER on IntegriCloud