msi: Avoid dead code in parse_prop (Coverity).

oldstable
Frédéric Delanoy 2012-01-29 23:25:40 +01:00 committed by Alexandre Julliard
parent 09213db643
commit ca4fdc57ed
1 changed files with 1 additions and 2 deletions

View File

@ -233,8 +233,7 @@ static int parse_prop( const WCHAR *str, WCHAR *value, int *quotes )
break;
default:
state = state_token;
if (!count) in_quotes = 0;
else in_quotes = 1;
in_quotes = 1;
len++;
break;
}