]> git.sesse.net Git - ffmpeg/commitdiff
avcodec/v4l2_m2m_dec: Fix memleak on ff_v4l2_m2m_codec_init() failure
authorMichael Niedermayer <michael@niedermayer.cc>
Sat, 1 Jun 2019 14:44:46 +0000 (16:44 +0200)
committerMichael Niedermayer <michael@niedermayer.cc>
Wed, 12 Jun 2019 10:01:32 +0000 (12:01 +0200)
Fixes: 13579/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MPEG1_V4L2M2M_fuzzer-5753560726241280
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
libavcodec/v4l2_m2m_dec.c

index 710e40efd81958b47e0c3f2a9fd589ad54bf8a5e..d0601f0e2fe32eba14cafb615e3f171a84f030fb 100644 (file)
@@ -188,7 +188,11 @@ static av_cold int v4l2_decode_init(AVCodecContext *avctx)
 
     ret = ff_v4l2_m2m_codec_init(avctx);
     if (ret) {
+        V4L2m2mPriv *priv = avctx->priv_data;
         av_log(avctx, AV_LOG_ERROR, "can't configure decoder\n");
+        s->self_ref = NULL;
+        av_buffer_unref(&priv->context_ref);
+
         return ret;
     }