2 Jan
2023
2 Jan
'23
9:59 a.m.
Rémi Bernon (@rbernon) commented about dlls/ntdll/heap.c:
return validate_large_block( heap, block ); }
+ if (subheap->user_value != heap) + { + ERR("subheap %p: owner heap mismatch (expected %p, got %p)\n", subheap, heap, subheap->user_value); + return FALSE; + }
This could probably be done in `check_subheap`, extending it to not only check sizes. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/1894#note_20233