mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
kernel: Fix CreateToolhelp32Snapshot tests on win2k.
This commit is contained in:
parent
a5b1581e48
commit
72a6d97679
1 changed files with 2 additions and 2 deletions
|
@ -244,7 +244,7 @@ static void test_module(DWORD pid, const char* expected[], unsigned num_expected
|
|||
me.th32ProcessID, me.modBaseAddr, me.modBaseSize, me.szExePath, me.szModule);
|
||||
ok(me.th32ProcessID == pid, "wrong returned process id");
|
||||
for (i = 0; i < num_expected; i++)
|
||||
if (!strcmp(expected[i], me.szModule)) found[i]++;
|
||||
if (!lstrcmpi(expected[i], me.szModule)) found[i]++;
|
||||
num++;
|
||||
} while (pModule32Next( hSnapshot, &me ));
|
||||
}
|
||||
|
@ -262,7 +262,7 @@ static void test_module(DWORD pid, const char* expected[], unsigned num_expected
|
|||
trace("PID=%lx base=%p size=%lx %s %s\n",
|
||||
me.th32ProcessID, me.modBaseAddr, me.modBaseSize, me.szExePath, me.szModule);
|
||||
for (i = 0; i < num_expected; i++)
|
||||
if (!strcmp(expected[i], me.szModule)) found[i]++;
|
||||
if (!lstrcmpi(expected[i], me.szModule)) found[i]++;
|
||||
num--;
|
||||
} while (pModule32Next( hSnapshot, &me ));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue