mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:19:49 +00:00
msiexec: Fix initial state of the argument parsing state machine.
This commit is contained in:
parent
783b855f42
commit
8d7fc61717
1 changed files with 2 additions and 2 deletions
|
@ -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 a new issue