]> git.sesse.net Git - ffmpeg/commitdiff
avcodec/sbcdec: Initialize number of channels
authorMichael Niedermayer <michael@niedermayer.cc>
Tue, 24 Sep 2019 21:50:23 +0000 (23:50 +0200)
committerMichael Niedermayer <michael@niedermayer.cc>
Thu, 26 Sep 2019 19:02:34 +0000 (21:02 +0200)
Fixes: out of array access
Fixes: 17609/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_SBC_fuzzer-5758729319874560
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Reviewed-by: Moritz Barsnick <barsnick@gmx.net>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
libavcodec/sbcdec.c

index 546b38c1068602af7928a65bccb1f81bfb56d5e5..937946e2d208635e61b14dc652019090dd14a03c 100644 (file)
@@ -348,6 +348,7 @@ static int sbc_decode_frame(AVCodecContext *avctx,
     if (frame_length <= 0)
         return frame_length;
 
+    avctx->channels =
     frame->channels = sbc->frame.channels;
     frame->format = AV_SAMPLE_FMT_S16P;
     frame->nb_samples = sbc->frame.blocks * sbc->frame.subbands;