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:
parent
a247605894
commit
4895156369
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue