kernel32/tests: Only set the size ourselves if we are on W2K.
This commit is contained in:
parent
052873350d
commit
763694a646
|
@ -395,7 +395,11 @@ static void test_GetComputerNameExA(void)
|
|||
ok(error == ERROR_MORE_DATA, "Expected ERROR_MORE_DATA, got %d\n", error);
|
||||
|
||||
/* size is not set in win2k */
|
||||
if (size == 0)
|
||||
{
|
||||
win_skip("Win2k doesn't set the size\n");
|
||||
size = MAX_COMP_NAME;
|
||||
}
|
||||
name = HeapAlloc(GetProcessHeap(), 0, size * sizeof(name[0]));
|
||||
ok(name != NULL, "HeapAlloc failed with error %d\n", GetLastError());
|
||||
ret = pGetComputerNameExA(ComputerNameDnsDomain, name, &size);
|
||||
|
@ -410,6 +414,7 @@ static void test_GetComputerNameExA(void)
|
|||
ok(error == ERROR_MORE_DATA, "Expected ERROR_MORE_DATA, got %d\n", error);
|
||||
|
||||
/* size is not set in win2k */
|
||||
if (size == 0)
|
||||
size = MAX_COMP_NAME;
|
||||
name = HeapAlloc(GetProcessHeap(), 0, size * sizeof(name[0]));
|
||||
ok(name != NULL, "HeapAlloc failed with error %d\n", GetLastError());
|
||||
|
@ -425,6 +430,7 @@ static void test_GetComputerNameExA(void)
|
|||
ok(error == ERROR_MORE_DATA, "Expected ERROR_MORE_DATA, got %d\n", error);
|
||||
|
||||
/* size is not set in win2k */
|
||||
if (size == 0)
|
||||
size = MAX_COMP_NAME;
|
||||
name = HeapAlloc(GetProcessHeap(), 0, size * sizeof(name[0]));
|
||||
ok(name != NULL, "HeapAlloc failed with error %d\n", GetLastError());
|
||||
|
@ -440,6 +446,7 @@ static void test_GetComputerNameExA(void)
|
|||
ok(error == ERROR_MORE_DATA, "Expected ERROR_MORE_DATA, got %d\n", error);
|
||||
|
||||
/* size is not set in win2k */
|
||||
if (size == 0)
|
||||
size = MAX_COMP_NAME;
|
||||
name = HeapAlloc(GetProcessHeap(), 0, size * sizeof(name[0]));
|
||||
ok(name != NULL, "HeapAlloc failed with error %d\n", GetLastError());
|
||||
|
|
Loading…
Reference in New Issue