diff options
author | qwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-01-21 14:41:31 +0000 |
---|---|---|
committer | qwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-01-21 14:41:31 +0000 |
commit | 7d582d6b499ed30268da033cc17fbde6e7b02a9d (patch) | |
tree | a875f20c0c31a6f87e92787e2816497bc4dd1a80 /MdePkg/Library/PeiMemoryAllocationLib | |
parent | 93e3992d1ea50fb30c48f498d257d4e66252dd9b (diff) | |
download | edk2-7d582d6b499ed30268da033cc17fbde6e7b02a9d.tar.gz edk2-7d582d6b499ed30268da033cc17fbde6e7b02a9d.tar.bz2 edk2-7d582d6b499ed30268da033cc17fbde6e7b02a9d.zip |
UEFI HII: Merge UEFI HII support changes from branch.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4600 6f19259b-4bc3-4df7-8a09-765794883524
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.
+ //
+}
+
|