Module: libav Branch: master Commit: ceff045dbecb63bbe42da6d7d33f614ae67fbebd
Author: Ronald S. Bultje <[email protected]> Committer: Ronald S. Bultje <[email protected]> Date: Mon Jun 6 09:27:54 2011 -0400 utils.c: fix crash with threading enabled. --- libavcodec/utils.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libavcodec/utils.c b/libavcodec/utils.c index 2b417de..1e58864 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -783,7 +783,7 @@ av_cold int avcodec_close(AVCodecContext *avctx) avctx->codec->close(avctx); avcodec_default_free_buffers(avctx); avctx->coded_frame = NULL; - if (avctx->codec->priv_class) + if (avctx->codec && avctx->codec->priv_class) av_opt_free(avctx->priv_data); av_opt_free(avctx); av_freep(&avctx->priv_data); _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
