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>
This commit is contained in:
Luca Barbato 2014-10-30 00:51:59 +00:00 committed by Vittorio Giovara
parent 5d29efe4b0
commit ac4a5e3abd
1 changed files with 1 additions and 0 deletions

View File

@ -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;
}