msi: Remove redundant comparison.

Signed-off-by: Andrey Gusev <andrey.goosev@gmail.com>
Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Andrey Gusev 2018-01-09 13:24:43 +02:00 committed by Alexandre Julliard
parent 8643a17ff3
commit 435be368e5
1 changed files with 1 additions and 1 deletions

View File

@ -506,7 +506,7 @@ static LPWSTR get_ini_field(LPWSTR buf, int field)
while ((end = strchrW(beg, ',')) && i < field)
{
beg = end + 1;
while (*beg && *beg == ' ')
while (*beg == ' ')
beg++;
i++;