2 Jan
2023
2 Jan
'23
9:59 a.m.
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. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/1894#note_20234