diff options
Diffstat (limited to 'MdePkg/Library/PeiMemoryAllocationLib')
-rw-r--r-- | MdePkg/Library/PeiMemoryAllocationLib/MemoryAllocationLib.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/MdePkg/Library/PeiMemoryAllocationLib/MemoryAllocationLib.c b/MdePkg/Library/PeiMemoryAllocationLib/MemoryAllocationLib.c index b1f6157bf5..80a01aac7b 100644 --- a/MdePkg/Library/PeiMemoryAllocationLib/MemoryAllocationLib.c +++ b/MdePkg/Library/PeiMemoryAllocationLib/MemoryAllocationLib.c @@ -1075,3 +1075,16 @@ FreeAlignedPool ( // PEI phase does not support to free pool, so leave it as NOP.
//
}
+
+
+VOID
+EFIAPI
+SafeFreePool (
+ IN VOID *Buffer
+ )
+{
+ //
+ // PEI phase does not support to free pool, so leave it as NOP.
+ //
+}
+
|