fix a stupid bug in ebml_read_sint()

Originally committed as revision 8328 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Aurelien Jacobs 18 years ago
parent 912c94f3ff
commit 0f3bd8ce1b
  1. 1
      libavformat/matroska.c

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

Loading…
Cancel
Save