mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-04 06:08:26 +02:00
avformat/mov: Check sample_count and auxiliary_info_default_size to be 0
This combination causes 0 size arrays to be allocated and to leak later Fixes: memleak Fixes: 64342/clusterfuzz-testcase-minimized-ffmpeg_dem_MOV_fuzzer-4520993686945792 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
6f9e90ab0b
commit
3c43299e9e
@ -6994,6 +6994,9 @@ static int mov_read_saiz(MOVContext *c, AVIOContext *pb, MOVAtom atom)
|
||||
sample_count = avio_rb32(pb);
|
||||
|
||||
if (encryption_index->auxiliary_info_default_size == 0) {
|
||||
if (sample_count == 0)
|
||||
return AVERROR_INVALIDDATA;
|
||||
|
||||
encryption_index->auxiliary_info_sizes = av_malloc(sample_count);
|
||||
if (!encryption_index->auxiliary_info_sizes)
|
||||
return AVERROR(ENOMEM);
|
||||
|
Loading…
x
Reference in New Issue
Block a user