diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2007-03-11 22:19:02 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2007-03-11 22:19:02 +0000 |
commit | 0f3bd8ce1bc313520631abd109b54e8d68b5129e (patch) | |
tree | 8de6c740dbe332939a1f2103177b2df7bf5d8f47 /libavformat/matroska.c | |
parent | 912c94f3ffdd755d699fdb82d05d55f00759dff1 (diff) | |
download | ffmpeg-0f3bd8ce1bc313520631abd109b54e8d68b5129e.tar.gz |
fix a stupid bug in ebml_read_sint()
Originally committed as revision 8328 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/matroska.c')
-rw-r--r-- | libavformat/matroska.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/matroska.c b/libavformat/matroska.c index 0235e18788..c8148c6a86 100644 --- a/libavformat/matroska.c +++ b/libavformat/matroska.c @@ -607,7 +607,6 @@ ebml_read_sint (MatroskaDemuxContext *matroska, negative = 1; *num &= ~0x80; } - *num = 0; while (n++ < size) *num = (*num << 8) | get_byte(pb); |