avformat/wavdec: satuarte next_tag_ofs, data_end

Fixes: signed integer overflow: 5053074104798691550 + 5053074104259715104 cannot be represented in type 'long'
Fixes: 62276/clusterfuzz-testcase-minimized-ffmpeg_dem_WAV_fuzzer-6515315309936640

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 61dca9e150)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
release/6.1
Michael Niedermayer 10 months ago
parent 6d92f9a85e
commit a42a5e692d
No known key found for this signature in database
GPG Key ID: B18E8928B3948D64
  1. 2
      libavformat/wavdec.c

@ -445,7 +445,7 @@ static int wav_read_header(AVFormatContext *s)
}
if (rf64 || bw64) {
next_tag_ofs = wav->data_end = avio_tell(pb) + data_size;
next_tag_ofs = wav->data_end = av_sat_add64(avio_tell(pb), data_size);
} else if (size != 0xFFFFFFFF) {
data_size = size;
next_tag_ofs = wav->data_end = size ? next_tag_ofs : INT64_MAX;

Loading…
Cancel
Save