Commit 435be368 authored by Andrey Gusev's avatar Andrey Gusev Committed by Alexandre Julliard

msi: Remove redundant comparison.

parent 8643a17f
......@@ -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++;
......
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