mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
avformat/asfdec_f: Check sizeX against padding
Fixes: signed integer overflow: 2147483607 + 64 cannot be represented in type 'int' Fixes: 29102/clusterfuzz-testcase-minimized-ffmpeg_dem_ASF_fuzzer-6753897878257664 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 f034c2e36acb7d0c11dc1849ddf8a67bde44eff4) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
f95a80bbd7
commit
d15d67e6cc
@ -516,7 +516,7 @@ static int asf_read_stream_properties(AVFormatContext *s, int64_t size)
|
|||||||
tag1 = avio_rl32(pb);
|
tag1 = avio_rl32(pb);
|
||||||
avio_skip(pb, 20);
|
avio_skip(pb, 20);
|
||||||
if (sizeX > 40) {
|
if (sizeX > 40) {
|
||||||
if (size < sizeX - 40)
|
if (size < sizeX - 40 || sizeX - 40 > INT_MAX - AV_INPUT_BUFFER_PADDING_SIZE)
|
||||||
return AVERROR_INVALIDDATA;
|
return AVERROR_INVALIDDATA;
|
||||||
st->codecpar->extradata_size = ffio_limit(pb, sizeX - 40);
|
st->codecpar->extradata_size = ffio_limit(pb, sizeX - 40);
|
||||||
st->codecpar->extradata = av_mallocz(st->codecpar->extradata_size +
|
st->codecpar->extradata = av_mallocz(st->codecpar->extradata_size +
|
||||||
|
Loading…
x
Reference in New Issue
Block a user