Commit 8d7fc617 authored by Alexandre Julliard's avatar Alexandre Julliard

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

parent 783b855f
......@@ -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++ )
{
......
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