Commit 9c0e4748 authored by aurel's avatar aurel

assdec: don't remove CR, they are part of the spec

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15442 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 50552adc
......@@ -37,7 +37,7 @@ static void get_line(ByteIOContext *s, char *buf, int maxlen)
do{
c = get_byte(s);
if (i < maxlen-1 && c != '\r')
if (i < maxlen-1)
buf[i++] = c;
}while(c != '\n' && c);
......
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