aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2021-10-04 23:54:46 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2021-10-16 21:19:24 +0200
commit9d8945bd4949033dc4f2d21b5919fc3e91f06f0f (patch)
treed79c9d50d39bc8a0dc43a0f0ec510e0ade6ff488
parent770b4de8d14700490ef7c52f14492ad9d13bb2b6 (diff)
downloadffmpeg-9d8945bd4949033dc4f2d21b5919fc3e91f06f0f.tar.gz
avformat/wavdec: Check smv_block_size
Fixes: Timeout Fixes: 39554/clusterfuzz-testcase-minimized-ffmpeg_dem_WAV_fuzzer-4915221701984256 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 849138f476f4b08656681bfc3aec5beac47777fb) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r--libavformat/wavdec.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/wavdec.c b/libavformat/wavdec.c
index 051b3a5d23..4d2524f126 100644
--- a/libavformat/wavdec.c
+++ b/libavformat/wavdec.c
@@ -480,6 +480,8 @@ static int wav_read_header(AVFormatContext *s)
wav->smv_data_ofs = avio_tell(pb) + (size - 5) * 3;
avio_rl24(pb);
wav->smv_block_size = avio_rl24(pb);
+ if (!wav->smv_block_size)
+ return AVERROR_INVALIDDATA;
avpriv_set_pts_info(vst, 32, 1, avio_rl24(pb));
vst->duration = avio_rl24(pb);
avio_rl24(pb);