Commit e3052ce7 authored by Roberto Togni's avatar Roberto Togni

Revert r10892, it's wrong and no longer needed to prevent crashes

Originally committed as revision 11127 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 56cc85a0
...@@ -380,7 +380,7 @@ static int get_num(ByteIOContext *pb, int *len) ...@@ -380,7 +380,7 @@ static int get_num(ByteIOContext *pb, int *len)
n = get_be16(pb); n = get_be16(pb);
(*len)-=2; (*len)-=2;
// n &= 0x7FFF; n &= 0x7FFF;
if (n >= 0x4000) { if (n >= 0x4000) {
return n - 0x4000; return n - 0x4000;
} else { } else {
......
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