aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2024-07-19 22:20:46 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2024-07-23 23:21:15 +0200
commitae20be8b5d0b3044b2094127d6ba1f529add50cc (patch)
tree6e6b1536f36dfea0835b014cf2cb416a03de1f24
parentd52fabaec00440a4615814805210e0eaad6ba3cb (diff)
downloadffmpeg-ae20be8b5d0b3044b2094127d6ba1f529add50cc.tar.gz
avcodec/aac/aacdec_usac: Dont leave invalid max_sfb in the context
Fixes: out of array read Fixes: 70363/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_AAC_LATM_fuzzer-6723855293415424.fuzz Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r--libavcodec/aac/aacdec_usac.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/aac/aacdec_usac.c b/libavcodec/aac/aacdec_usac.c
index 32b3c534bf..1b79d19a30 100644
--- a/libavcodec/aac/aacdec_usac.c
+++ b/libavcodec/aac/aacdec_usac.c
@@ -834,6 +834,7 @@ static int setup_sce(AACDecContext *ac, SingleChannelElement *sce,
"Number of scalefactor bands in group (%d) "
"exceeds limit (%d).\n",
ics->max_sfb, ics->num_swb);
+ ics->max_sfb = 0;
return AVERROR(EINVAL);
}