changeset 1898:924bfc59f12c libavformat

fix a stupid bug in ebml_read_sint()
author aurel
date Sun, 11 Mar 2007 22:19:02 +0000
parents abbc781d608a
children 1324ae790ee0
files matroska.c
diffstat 1 files changed, 0 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/matroska.c	Sun Mar 11 22:16:38 2007 +0000
+++ b/matroska.c	Sun Mar 11 22:19:02 2007 +0000
@@ -607,7 +607,6 @@
         negative = 1;
         *num &= ~0x80;
     }
-    *num = 0;
     while (n++ < size)
         *num = (*num << 8) | get_byte(pb);