Commit 0f3bd8ce authored by Aurelien Jacobs's avatar Aurelien Jacobs

fix a stupid bug in ebml_read_sint()

Originally committed as revision 8328 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 912c94f3
......@@ -607,7 +607,6 @@ ebml_read_sint (MatroskaDemuxContext *matroska,
negative = 1;
*num &= ~0x80;
}
*num = 0;
while (n++ < size)
*num = (*num << 8) | get_byte(pb);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment