mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
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:
parent
5d29efe4b0
commit
ac4a5e3abd
@ -601,6 +601,7 @@ int ff_frame_thread_init(AVCodecContext *avctx)
|
||||
|
||||
p->frame = av_frame_alloc();
|
||||
if (!p->frame) {
|
||||
av_freep(©);
|
||||
err = AVERROR(ENOMEM);
|
||||
goto error;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user