libavcodec/utils: Free threads on init failure
Fixes: Multiple memleaks Fixes: ffmpeg-memory-leak Found-by: Francis Provencher <francis@protekresearchlab.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 61b055bed0968d60eb24a5080fb4ba2bcf73b753) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
eeb50e42ba
commit
4b68a455e2
@ -1018,6 +1018,9 @@ free_and_end:
|
||||
(avctx->codec->caps_internal & FF_CODEC_CAP_INIT_CLEANUP)))
|
||||
avctx->codec->close(avctx);
|
||||
|
||||
if (HAVE_THREADS && avctx->internal->thread_ctx)
|
||||
ff_thread_free(avctx);
|
||||
|
||||
if (codec->priv_class && codec->priv_data_size)
|
||||
av_opt_free(avctx->priv_data);
|
||||
av_opt_free(avctx);
|
||||
|
Loading…
x
Reference in New Issue
Block a user