mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-01 13:36:26 +08:00
Proper handling of trailing whitespaces
Commited in SoC by Vitor Sessak on 2008-04-10 21:29:33 Originally committed as revision 13308 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@ -120,6 +120,8 @@ static char *consume_string(const char **buf)
|
||||
case '[':
|
||||
case '=':
|
||||
case ',':
|
||||
case ' ':
|
||||
case '\n':
|
||||
*out++= 0;
|
||||
break;
|
||||
default:
|
||||
@ -128,6 +130,8 @@ static char *consume_string(const char **buf)
|
||||
} while(out[-1]);
|
||||
|
||||
(*buf)--;
|
||||
consume_whitespace(buf);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user