Jinoh Kang (@iamahuman) commented about dlls/ntdll/heap.c:
return STATUS_SUCCESS;
}
+/* Low Fragmentation Heap frontend */
+/* header for every LFH block group */
+struct DECLSPEC_ALIGN(BLOCK_ALIGN) group +{
- struct block block;
This field is never used outside `group_allocate` and `group_releaes`, so it makes sense to consider the `block` as not being logically part of `struct group`. This will allow us to use `SLIST_ENTRY` directly.