[FFmpeg-cvslog] r16534 - trunk/libavformat/movenc.c
bcoudurier
subversion
Sun Jan 11 11:41:43 CET 2009
Author: bcoudurier
Date: Sun Jan 11 11:41:43 2009
New Revision: 16534
Log:
remove warnings about uninitialized vars
Modified:
trunk/libavformat/movenc.c
Modified: trunk/libavformat/movenc.c
==============================================================================
--- trunk/libavformat/movenc.c Sun Jan 11 11:40:05 2009 (r16533)
+++ trunk/libavformat/movenc.c Sun Jan 11 11:41:43 2009 (r16534)
@@ -905,7 +905,7 @@ static int mov_write_vmhd_tag(ByteIOCont
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 */
More information about the ffmpeg-cvslog
mailing list