more option validation

This commit is contained in:
2026-06-08 19:28:38 +02:00
parent 7095e2abc4
commit 6ea22a16e3
2 changed files with 9 additions and 3 deletions

View File

@@ -44,10 +44,10 @@ void MIHP_PlatformOnHeapCorruptionDetected(struct _MIHP_HeapCorruptionInfo info)
typedef struct _MIHP_HeapConfig
{
size_t AllocationAlignment;
size_t AllocationAlignment; // Must be power of two and at least sizeof(size_t)
size_t MinimalMemoryAreaSize;
size_t MaximalMemoryAreaSize;
size_t MinimalMemoryAreaSize; // Must be a multiple of AllocationAlingment
size_t MaximalMemoryAreaSize; // Must be a multiple of AllocationAlingment
char AllocationInitialValue;
} MIHP_HeapConfig;