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:
parent
912c94f3ff
commit
0f3bd8ce1b
@ -607,7 +607,6 @@ ebml_read_sint (MatroskaDemuxContext *matroska,
|
||||
negative = 1;
|
||||
*num &= ~0x80;
|
||||
}
|
||||
*num = 0;
|
||||
while (n++ < size)
|
||||
*num = (*num << 8) | get_byte(pb);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user