1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-08 20:06:18 +00:00

ntdll: Remove redundant comparison.

Signed-off-by: Andrey Gusev <andrey.goosev@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Andrey Gusev 2017-10-12 16:14:53 +03:00 committed by Alexandre Julliard
parent a247605894
commit 4895156369

View File

@ -253,7 +253,7 @@ static void init_load_order(void)
entry = strW.Buffer;
while (*entry)
{
while (*entry && *entry == ';') entry++;
while (*entry == ';') entry++;
if (!*entry) break;
next = strchrW( entry, ';' );
if (next) *next++ = 0;