[FFmpeg-cvslog] r11573 - trunk/libavformat/mxf.c

bcoudurier subversion
Sat Jan 19 21:00:09 CET 2008


Author: bcoudurier
Date: Sat Jan 19 21:00:09 2008
New Revision: 11573

Log:
init uid to 0

Modified:
   trunk/libavformat/mxf.c

Modified: trunk/libavformat/mxf.c
==============================================================================
--- trunk/libavformat/mxf.c	(original)
+++ trunk/libavformat/mxf.c	Sat Jan 19 21:00:09 2008
@@ -922,7 +922,7 @@ static int mxf_read_local_tags(MXFContex
         int tag = get_be16(pb);
         int size = get_be16(pb); /* KLV specified by 0x53 */
         uint64_t next = url_ftell(pb) + size;
-        UID uid;
+        UID uid = {0};
 
         if (!size) { /* ignore empty tag, needed for some files with empty UMID tag */
             av_log(mxf->fc, AV_LOG_ERROR, "local tag 0x%04X with 0 size\n", tag);




More information about the ffmpeg-cvslog mailing list