aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2022-04-11 22:00:52 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2022-10-09 21:32:50 +0200
commit30ac63c8d2195c3ddcd2867fd607e328baa03fb0 (patch)
tree773caee24a2b121fc1d6952e7ad17cb2715c5229
parent839f98ff6719cf2db0cbd88cd787a1b19b9cbf47 (diff)
downloadffmpeg-30ac63c8d2195c3ddcd2867fd607e328baa03fb0.tar.gz
avformat/genh: Check sample rate
Fixes: signed integer overflow: -2515507630940093440 * 4 cannot be represented in type 'long' Fixes: 46318/clusterfuzz-testcase-minimized-ffmpeg_dem_GENH_fuzzer-5009637474172928 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit a3d790f1977ed6c326eb93bb61757297a7905dcc) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r--libavformat/genh.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/genh.c b/libavformat/genh.c
index 698104a9d6..0b55a8884a 100644
--- a/libavformat/genh.c
+++ b/libavformat/genh.c
@@ -67,6 +67,9 @@ static int genh_read_header(AVFormatContext *s)
return AVERROR_INVALIDDATA;
st->codecpar->block_align = align * st->codecpar->channels;
st->codecpar->sample_rate = avio_rl32(s->pb);
+ if (st->codecpar->sample_rate < 0)
+ return AVERROR_INVALIDDATA;
+
avio_skip(s->pb, 4);
st->duration = avio_rl32(s->pb);