msiexec: Fix initial state of the argument parsing state machine.
This commit is contained in:
parent
783b855f42
commit
8d7fc61717
|
@ -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++ )
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue