]> git.sesse.net Git - ffmpeg/commitdiff
avcodec/pngdec: Use ff_set_dimensions()
authorMichael Niedermayer <michael@niedermayer.cc>
Thu, 4 May 2017 16:40:46 +0000 (18:40 +0200)
committerMichael Niedermayer <michael@niedermayer.cc>
Thu, 4 May 2017 16:41:30 +0000 (18:41 +0200)
Fixes OOM
Fixes: 1314/clusterfuzz-testcase-minimized-4621997222920192
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
libavcodec/pngdec.c

index aece1fcd5f3699197d377978f348f1ecc50708ce..083f61f4f802f240b3694fca2f12d134925e6b96 100644 (file)
@@ -622,8 +622,9 @@ static int decode_idat_chunk(AVCodecContext *avctx, PNGDecContext *s,
     }
     if (!(s->pic_state & PNG_IDAT)) {
         /* init image info */
-        avctx->width  = s->width;
-        avctx->height = s->height;
+        ret = ff_set_dimensions(avctx, s->width, s->height);
+        if (ret < 0)
+            return ret;
 
         s->channels       = ff_png_get_nb_channels(s->color_type);
         s->bits_per_pixel = s->bit_depth * s->channels;