On 4/28/19, Michael Niedermayer <[email protected]> wrote:
> Fixes: Timeout (23sec -> 0.5sec)
> Fixes:
> 14329/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_LSCR_fuzzer-5679252923482112
>
> Found-by: continuous fuzzing process
> https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
> Signed-off-by: Michael Niedermayer <[email protected]>
> ---
>  libavcodec/pngdec.c | 2 ++
>  1 file changed, 2 insertions(+)
>
> diff --git a/libavcodec/pngdec.c b/libavcodec/pngdec.c
> index 6a681be29d..1dcde6cbc9 100644
> --- a/libavcodec/pngdec.c
> +++ b/libavcodec/pngdec.c
> @@ -1541,6 +1541,8 @@ static int decode_frame_lscr(AVCodecContext *avctx,
>          return ret;
>
>      nb_blocks = bytestream2_get_le16(gb);
> +    if (2 + nb_blocks * 12 > bytestream2_get_bytes_left(gb))

I prefer if this is not reversed.

> +        return AVERROR_INVALIDDATA;
>
>      if (s->last_picture.f->data[0]) {
>          ret = av_frame_copy(frame, s->last_picture.f);
> --
> 2.21.0
>
> _______________________________________________
> ffmpeg-devel mailing list
> [email protected]
> https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
>
> To unsubscribe, visit link above, or email
> [email protected] with subject "unsubscribe".
_______________________________________________
ffmpeg-devel mailing list
[email protected]
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
[email protected] with subject "unsubscribe".

Reply via email to