From 985688b8e597b616246746a16649653db6dcf023 Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Sun, 11 Jan 2009 10:41:43 +0000 Subject: [PATCH] remove warnings about uninitialized vars Originally committed as revision 16534 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/movenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/movenc.c b/libavformat/movenc.c index 56d230fc44..aa44fd0897 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -905,7 +905,7 @@ static int mov_write_vmhd_tag(ByteIOContext *pb) static int mov_write_hdlr_tag(ByteIOContext *pb, MOVTrack *track) { - const char *descr, *hdlr, *hdlr_type; + const char *hdlr, *descr = NULL, *hdlr_type = NULL; int64_t pos = url_ftell(pb); if (!track) { /* no media --> data handler */