# HG changeset patch # User reimar # Date 1379835115 0 # Node ID 505fcd136e7327c204eb6856929a61ef0bada597 # Parent dba1b5aa72c1888754e76e7450a130884e2f8c53 Ensure AVDictionary pointer is initialized. diff -r dba1b5aa72c1 -r 505fcd136e73 libmpdemux/demux_lavf.c --- a/libmpdemux/demux_lavf.c Sat Sep 21 16:53:12 2013 +0000 +++ b/libmpdemux/demux_lavf.c Sun Sep 22 07:31:55 2013 +0000 @@ -508,7 +508,7 @@ } static demuxer_t* demux_open_lavf(demuxer_t *demuxer){ - AVDictionary *opts; + AVDictionary *opts = NULL; AVFormatContext *avfc; AVDictionaryEntry *t = NULL; lavf_priv_t *priv= demuxer->priv;