Update minimal_heap_implementation.inl

This commit is contained in:
2026-06-09 01:37:53 +02:00
parent 667b359eec
commit 202938ca07

View File

@@ -662,5 +662,5 @@ void MIHP_ValidateHeapSegmentHeader(const MIHP_Heap* heap, const MIHP_HeapSegmen
size_t MIHP_GetMinimalPayloadSize(const MIHP_Heap* heap)
{
return heap->Config.AllocationAlignment;
return heap->Config.AllocationAlignment * 2;
}