diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2020-12-09 00:49:29 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2021-10-17 21:34:53 +0200 |
commit | 74063774e28f23689d7d3663152c8c6f6b90caa3 (patch) | |
tree | 4fe03873f207a4205dd196238755f8612ef67ce9 | |
parent | 852f1ebe9c385fa8f159e203f7e1b3b30828298a (diff) | |
download | ffmpeg-74063774e28f23689d7d3663152c8c6f6b90caa3.tar.gz |
avformat/rpl: Check the number of streams
Fixes: out of memory access
Fixes: 27787/clusterfuzz-testcase-minimized-ffmpeg_dem_RPL_fuzzer-4743666463408128.fuzz
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit 0677bdb1f522d0d25b47bca3d8e09ece83083678)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavformat/rpl.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/rpl.c b/libavformat/rpl.c index 04cb917aef..b5c3f0fa81 100644 --- a/libavformat/rpl.c +++ b/libavformat/rpl.c @@ -230,6 +230,9 @@ static int rpl_read_header(AVFormatContext *s) error |= read_line(pb, line, sizeof(line)); } + if (s->nb_streams == 0) + return AVERROR_INVALIDDATA; + rpl->frames_per_chunk = read_line_and_int(pb, &error); // video frames per chunk if (rpl->frames_per_chunk > 1 && vst->codec->codec_tag != 124) av_log(s, AV_LOG_WARNING, |