summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2013-09-03 22:25:17 +0200
committerClément Bœsch <u@pkh.me>2013-09-04 22:06:38 +0200
commit3e1f507f3e8f16b716aa115552d243b48ae809bd (patch)
treeab59fbca555d5cfb2b47f309a4ca0869c1d41e0a /libavcodec
parent36cd017acd9cac0e6695124c052a59fb1fc13145 (diff)
avcodec: make avcodec_close() more tolerant.
See previous commit.
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/utils.c7
-rw-r--r--libavcodec/version.h2
2 files changed, 7 insertions, 2 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c
index 497cf15e10..30bc5222da 100644
--- a/libavcodec/utils.c
+++ b/libavcodec/utils.c
@@ -2398,7 +2398,12 @@ av_cold int ff_codec_close_recursive(AVCodecContext *avctx)
av_cold int avcodec_close(AVCodecContext *avctx)
{
- int ret = ff_lock_avcodec(avctx);
+ int ret;
+
+ if (!avctx)
+ return 0;
+
+ ret = ff_lock_avcodec(avctx);
if (ret < 0)
return ret;
diff --git a/libavcodec/version.h b/libavcodec/version.h
index e65c021a49..f16db2aa5a 100644
--- a/libavcodec/version.h
+++ b/libavcodec/version.h
@@ -30,7 +30,7 @@
#define LIBAVCODEC_VERSION_MAJOR 55
#define LIBAVCODEC_VERSION_MINOR 31
-#define LIBAVCODEC_VERSION_MICRO 100
+#define LIBAVCODEC_VERSION_MICRO 101
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
LIBAVCODEC_VERSION_MINOR, \