ffmpeg | branch: master | Luca Barbato <[email protected]> | Wed Oct 15 02:35:55 2014 +0200| [0db6bbb24c1a9f6b5527f460361a5a4132248eee] | committer: Vittorio Giovara
avformat: Make avformat_free_context handle NULL Work as the other free()-like functions. Bug-Id: CID 1087081 CC: [email protected] > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0db6bbb24c1a9f6b5527f460361a5a4132248eee --- libavformat/utils.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavformat/utils.c b/libavformat/utils.c index ef2d89f..3ea0ebd 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -2434,6 +2434,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); _______________________________________________ ffmpeg-cvslog mailing list [email protected] http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
