[Ffmpeg-cvslog] r8328 - trunk/libavformat/matroska.c

aurel subversion
Sun Mar 11 23:19:02 CET 2007


Author: aurel
Date: Sun Mar 11 23:19:02 2007
New Revision: 8328

Modified:
   trunk/libavformat/matroska.c

Log:
fix a stupid bug in ebml_read_sint()

Modified: trunk/libavformat/matroska.c
==============================================================================
--- trunk/libavformat/matroska.c	(original)
+++ trunk/libavformat/matroska.c	Sun Mar 11 23:19:02 2007
@@ -607,7 +607,6 @@ ebml_read_sint (MatroskaDemuxContext *ma
         negative = 1;
         *num &= ~0x80;
     }
-    *num = 0;
     while (n++ < size)
         *num = (*num << 8) | get_byte(pb);
 




More information about the ffmpeg-cvslog mailing list