1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-24 13:56:33 +02:00

fix a stupid bug in ebml_read_sint()

Originally committed as revision 8328 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Aurelien Jacobs 2007-03-11 22:19:02 +00:00
parent 912c94f3ff
commit 0f3bd8ce1b

View File

@ -607,7 +607,6 @@ ebml_read_sint (MatroskaDemuxContext *matroska,
negative = 1;
*num &= ~0x80;
}
*num = 0;
while (n++ < size)
*num = (*num << 8) | get_byte(pb);