From 9859f54db3d24148826f2543367d06a3b77a9725 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sat, 3 Dec 2016 18:33:22 +0100 Subject: [PATCH] avformat/ffmdec: Silence "may be used uninitialized in this function" warnings Signed-off-by: Michael Niedermayer --- libavformat/ffmdec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/ffmdec.c b/libavformat/ffmdec.c index 1bd380b6a8..f863bf7818 100644 --- a/libavformat/ffmdec.c +++ b/libavformat/ffmdec.c @@ -280,10 +280,10 @@ static int ffm_append_recommended_configuration(AVStream *st, char **conf) static int ffm2_read_header(AVFormatContext *s) { FFMContext *ffm = s->priv_data; - AVStream *st; + AVStream *st = NULL; AVIOContext *pb = s->pb; AVCodecContext *dummy_codec = NULL; - AVCodecParameters *codecpar; + AVCodecParameters *codecpar = NULL; const AVCodecDescriptor *codec_desc; int ret; int f_main = 0, f_cprv = -1, f_stvi = -1, f_stau = -1;