From bb823e26b1cbb91b475c10772cdfd867d4809a65 Mon Sep 17 00:00:00 2001 From: Luca Barbato Date: Wed, 15 Oct 2014 02:35:55 +0200 Subject: [PATCH] avformat: Make avformat_free_context handle NULL Work as the other free()-like functions. Bug-Id: CID 1087081 CC: libav-stable@libav.org --- libavformat/utils.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavformat/utils.c b/libavformat/utils.c index 73e3039421..94431e1923 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -2447,6 +2447,9 @@ void avformat_free_context(AVFormatContext *s) int i, j; AVStream *st; + if (!s) + return; + av_opt_free(s); if (s->iformat && s->iformat->priv_class && s->priv_data) av_opt_free(s->priv_data);