| Index: source/patched-ffmpeg-mt/libavcodec/pngdec.c
|
| ===================================================================
|
| --- source/patched-ffmpeg-mt/libavcodec/pngdec.c (revision 59334)
|
| +++ source/patched-ffmpeg-mt/libavcodec/pngdec.c (working copy)
|
| @@ -442,7 +442,7 @@
|
| goto fail;
|
| s->width = bytestream_get_be32(&s->bytestream);
|
| s->height = bytestream_get_be32(&s->bytestream);
|
| - if(av_check_image_size(s->width, s->height, 0, avctx)){
|
| + if(av_image_check_size(s->width, s->height, 0, avctx)){
|
| s->width= s->height= 0;
|
| goto fail;
|
| }
|
|
|