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; entry = strW.Buffer;
while (*entry) while (*entry)
{ {
while (*entry && *entry == ';') entry++; while (*entry == ';') entry++;
if (!*entry) break; if (!*entry) break;
next = strchrW( entry, ';' ); next = strchrW( entry, ';' );
if (next) *next++ = 0; if (next) *next++ = 0;