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:
Vitor Sessak 2008-05-24 20:39:55 +00:00
parent a64821f4e5
commit a78f2ccdd6
1 changed files with 4 additions and 0 deletions

View File

@ -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;
}