mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 12:49:45 +00:00
advapi32/tests: Fix for crashes on Mac OS X.
This commit is contained in:
parent
d62dd46516
commit
b573986188
@ -295,7 +295,7 @@ static void test_generic(void)
|
||||
|
||||
for (i = 0; i < count; i++)
|
||||
{
|
||||
if (!strcmp(creds[i]->TargetName, TEST_TARGET_NAME))
|
||||
if (creds[i]->TargetName && !strcmp(creds[i]->TargetName, TEST_TARGET_NAME))
|
||||
{
|
||||
ok(creds[i]->Type == CRED_TYPE_GENERIC ||
|
||||
creds[i]->Type == CRED_TYPE_DOMAIN_PASSWORD, /* Vista */
|
||||
@ -353,7 +353,7 @@ static void test_domain_password(DWORD cred_type)
|
||||
|
||||
for (i = 0; i < count; i++)
|
||||
{
|
||||
if (!strcmp(creds[i]->TargetName, TEST_TARGET_NAME))
|
||||
if (creds[i]->TargetName && !strcmp(creds[i]->TargetName, TEST_TARGET_NAME))
|
||||
{
|
||||
ok(creds[i]->Type == cred_type, "expected creds[%d]->Type CRED_TYPE_DOMAIN_PASSWORD but got %d\n", i, creds[i]->Type);
|
||||
ok(!creds[i]->Flags, "expected creds[%d]->Flags 0 but got 0x%x\n", i, creds[i]->Flags);
|
||||
|
Loading…
Reference in New Issue
Block a user