Piotr Caban (@piotr) commented about dlls/msvcr100/tests/msvcr100.c:
ok( ret == 0, "wrong ret %d\n", ret );
}
+static void test_HeapValidate(void) +{
- void *ptr;
- ptr = p_calloc(1, 1);
- ok(ptr != NULL, "got %p\n", ptr);
- ok(!HeapValidate(GetProcessHeap(), 0, ptr), "HeapValidate unexpectedly succeeded\n");
- p_free(ptr);
+}
Please use `_get_heap_handle()` to check what heap is used.