# HG changeset patch # User bcoudurier # Date 1200772809 0 # Node ID 5224d442964fcbdece25af246211c92e8249af4d # Parent c498cb28447aa1a6873a6fcf655824efabeaf321 init uid to 0 diff -r c498cb28447a -r 5224d442964f mxf.c --- a/mxf.c Sat Jan 19 19:59:04 2008 +0000 +++ b/mxf.c Sat Jan 19 20:00:09 2008 +0000 @@ -922,7 +922,7 @@ 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);