msiexec: Fix initial state of the argument parsing state machine.

This commit is contained in:
Alexandre Julliard 2008-10-23 12:53:47 +02:00
parent 783b855f42
commit 8d7fc61717

View file

@ -388,9 +388,9 @@ enum chomp_state
static int chomp( WCHAR *str )
{
enum chomp_state state = cs_whitespace;
enum chomp_state state = cs_token;
WCHAR *p, *out;
int count = 0, ignore;
int count = 1, ignore;
for( p = str, out = str; *p; p++ )
{