Rémi Bernon (@rbernon) commented about dlls/ntdll/heap.c:
} }
- if (heap->pending_free)
- {
unsigned int i, end;
for (i = 0; i < MAX_FREE_PENDING; i++)
{
if (!(block = heap->pending_free[i])) break;
subheap = block_get_subheap( heap, block );
This should probably call `find_subheap` to be more robust.