summaryrefslogtreecommitdiff
path: root/MdePkg
diff options
context:
space:
mode:
authorqwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524>2008-10-30 09:17:01 +0000
committerqwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524>2008-10-30 09:17:01 +0000
commitc59f6dcebe6d15f502f9df839ba609b6a6d3be67 (patch)
tree6a002a993296d2363c4e4541912b6d4fc99bbb0c /MdePkg
parent30ae98da98d96bbc9ff577d6406857fbbf950082 (diff)
downloadedk2-c59f6dcebe6d15f502f9df839ba609b6a6d3be67.zip
edk2-c59f6dcebe6d15f502f9df839ba609b6a6d3be67.tar.gz
edk2-c59f6dcebe6d15f502f9df839ba609b6a6d3be67.tar.bz2
add info for removal of SafeFreePool.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6309 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg')
-rw-r--r--MdePkg/ChangeLog.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/MdePkg/ChangeLog.txt b/MdePkg/ChangeLog.txt
index 30c8bf7..001c715 100644
--- a/MdePkg/ChangeLog.txt
+++ b/MdePkg/ChangeLog.txt
@@ -196,3 +196,13 @@ Possible Impacts:
Customer's module that reference GetPeiServicesTablePointer in PeiServicesTablePointer library may need to updated. Otherwise
a build break (mismatch of data type) may occur.
+EDK_6307: Non-Compatible: qwang12
+
+Remove SafeFreePool from MemoryAllocationLib as this API's name is misleading. Its implementation only check if a pointer is NULL. If a garbage pointer is passed in, the gBS->FreePool will still ASSERT in debug build and return error code.
+
+It is recommended that module writer should keep track how a pointer is allocated and free it after use.
+
+Possible Impacts:
+ Customer's module that reference SafeFreePool need to updated. Otherwise
+ a build break may occur.
+