[FFmpeg-devel] [PATCH 2/2] avcodec/wavpack: Prevent frame format from being wrong
Anton Khirnov
anton at khirnov.net
Fri Mar 20 11:18:49 EET 2020
Quoting Michael Niedermayer (2020-03-20 01:03:36)
> Fixes: out of array access
> Fixes: 21193/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_WAVPACK_fuzzer-5125168956702720
>
> 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/wavpack.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/libavcodec/wavpack.c b/libavcodec/wavpack.c
> index b27262b94e..e9c870e41e 100644
> --- a/libavcodec/wavpack.c
> +++ b/libavcodec/wavpack.c
> @@ -1488,6 +1488,7 @@ static int wavpack_decode_block(AVCodecContext *avctx, int block_no,
>
> /* get output buffer */
> wc->curr_frame.f->nb_samples = s->samples;
> + wc->curr_frame.f->format = avctx->sample_fmt;
How does this have any effect? curr_frame.f should now be clean and get
initialized from avctx->sample_fmt.
--
Anton Khirnov
More information about the ffmpeg-devel
mailing list