pthreads_frame: Do not leak on failure path

CC: libav-stable@libav.org
Bug-Id: CID 1135767
Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
pull/94/head
Luca Barbato 10 years ago committed by Vittorio Giovara
parent 5d29efe4b0
commit ac4a5e3abd
  1. 1
      libavcodec/pthread_frame.c

@ -601,6 +601,7 @@ int ff_frame_thread_init(AVCodecContext *avctx)
p->frame = av_frame_alloc();
if (!p->frame) {
av_freep(&copy);
err = AVERROR(ENOMEM);
goto error;
}

Loading…
Cancel
Save