[FFmpeg-devel] [PATCH 01/11] avcodec/alsdec: Clear shift_value
Michael Niedermayer
michael at niedermayer.cc
Sat Jul 20 03:52:31 EEST 2024
(the exact issue is unreproducable but the use of uninitialized data is reproducable)
Should fix: signed integer overflow: -2147483648 - 127 cannot be represented in type 'int'
Should fix: 69881/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_ALS_fuzzer-4751301204836352
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
---
libavcodec/alsdec.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavcodec/alsdec.c b/libavcodec/alsdec.c
index be72994432e..f4f67917d76 100644
--- a/libavcodec/alsdec.c
+++ b/libavcodec/alsdec.c
@@ -2110,8 +2110,8 @@ static av_cold int decode_init(AVCodecContext *avctx)
if (sconf->floating) {
ctx->acf = av_malloc_array(channels, sizeof(*ctx->acf));
- ctx->shift_value = av_malloc_array(channels, sizeof(*ctx->shift_value));
- ctx->last_shift_value = av_malloc_array(channels, sizeof(*ctx->last_shift_value));
+ ctx->shift_value = av_calloc(channels, sizeof(*ctx->shift_value));
+ ctx->last_shift_value = av_calloc(channels, sizeof(*ctx->last_shift_value));
ctx->last_acf_mantissa = av_malloc_array(channels, sizeof(*ctx->last_acf_mantissa));
ctx->raw_mantissa = av_calloc(channels, sizeof(*ctx->raw_mantissa));
--
2.45.2
More information about the ffmpeg-devel
mailing list