mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-04 06:08:26 +02:00
avformat/wavdec: Check left avio_tell for overflow
Fixes: signed integer overflow: 155 + 9223372036854775655 cannot be represented in type 'long' Fixes: 51896/clusterfuzz-testcase-minimized-ffmpeg_dem_W64_fuzzer-5364032278495232 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 929ddef3f40102d6a84cfa17ed7c7ffebcf8236e) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
0dd32cf88d
commit
ef36359c14
@ -765,6 +765,8 @@ smv_out:
|
||||
goto smv_retry;
|
||||
return AVERROR_EOF;
|
||||
}
|
||||
if (INT64_MAX - left < avio_tell(s->pb))
|
||||
return AVERROR_INVALIDDATA;
|
||||
wav->data_end = avio_tell(s->pb) + left;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user