Commit b112e25d authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'a78f5548'

* commit 'a78f5548':
  avcodec: Free the default avoptions on init failure

See: 1907ff0aMerged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents c39b07ff a78f5548
......@@ -1709,9 +1709,11 @@ free_and_end:
(avctx->codec->caps_internal & FF_CODEC_CAP_INIT_CLEANUP))
avctx->codec->close(avctx);
av_dict_free(&tmp);
if (codec->priv_class && codec->priv_data_size)
av_opt_free(avctx->priv_data);
av_opt_free(avctx);
av_dict_free(&tmp);
av_freep(&avctx->priv_data);
if (avctx->internal) {
av_frame_free(&avctx->internal->to_free);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment