kernel32/tests: Don't check return values inside of if(0) (LLVM/Clang).
This commit is contained in:
parent
27dd864f63
commit
8b7904d78d
|
@ -469,11 +469,11 @@ static void test_HeapQueryInformation(void)
|
||||||
if (0) /* crashes under XP */
|
if (0) /* crashes under XP */
|
||||||
{
|
{
|
||||||
size = 0;
|
size = 0;
|
||||||
ret = pHeapQueryInformation(0,
|
pHeapQueryInformation(0,
|
||||||
HeapCompatibilityInformation,
|
HeapCompatibilityInformation,
|
||||||
&info, sizeof(info), &size);
|
&info, sizeof(info), &size);
|
||||||
size = 0;
|
size = 0;
|
||||||
ret = pHeapQueryInformation(GetProcessHeap(),
|
pHeapQueryInformation(GetProcessHeap(),
|
||||||
HeapCompatibilityInformation,
|
HeapCompatibilityInformation,
|
||||||
NULL, sizeof(info), &size);
|
NULL, sizeof(info), &size);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue