mirror of https://git.ffmpeg.org/ffmpeg.git
avformat/paf: Check for EOF before allocation in read_header()
Fixes: OOM
Fixes: 26584/clusterfuzz-testcase-minimized-ffmpeg_dem_PAF_fuzzer-5172661183053824
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit bcb1e9d3b9
)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
47edf812a8
commit
0661b58141
|
@ -136,6 +136,10 @@ static int read_header(AVFormatContext *s)
|
|||
p->start_offset = avio_rl32(pb);
|
||||
p->max_video_blks = avio_rl32(pb);
|
||||
p->max_audio_blks = avio_rl32(pb);
|
||||
|
||||
if (avio_feof(pb))
|
||||
return AVERROR_INVALIDDATA;
|
||||
|
||||
if (p->buffer_size < 175 ||
|
||||
p->max_audio_blks < 2 ||
|
||||
p->max_video_blks < 1 ||
|
||||
|
|
Loading…
Reference in New Issue