diff options
author | lzeng14 <lzeng14@6f19259b-4bc3-4df7-8a09-765794883524> | 2012-02-03 07:48:57 +0000 |
---|---|---|
committer | lzeng14 <lzeng14@6f19259b-4bc3-4df7-8a09-765794883524> | 2012-02-03 07:48:57 +0000 |
commit | 3e570e6e52bc5c2ea0fbe479c2a49107c754788c (patch) | |
tree | 08068e1d156ffd31217e99da3b652862022aa9ca /UnixPkg | |
parent | 2d97e71f17e00ec2fe955e2649cbb86db2929464 (diff) | |
download | edk2-3e570e6e52bc5c2ea0fbe479c2a49107c754788c.zip edk2-3e570e6e52bc5c2ea0fbe479c2a49107c754788c.tar.gz edk2-3e570e6e52bc5c2ea0fbe479c2a49107c754788c.tar.bz2 |
Append double-null for Type 19 data record.
Signed-off-by: lzeng14
Reviewed-by: li-elvin
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12983 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'UnixPkg')
-rw-r--r-- | UnixPkg/MiscSubClassPlatformDxe/MiscSubclassDriverEntryPoint.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/UnixPkg/MiscSubClassPlatformDxe/MiscSubclassDriverEntryPoint.c b/UnixPkg/MiscSubClassPlatformDxe/MiscSubclassDriverEntryPoint.c index 41b32fe..283a761 100644 --- a/UnixPkg/MiscSubClassPlatformDxe/MiscSubclassDriverEntryPoint.c +++ b/UnixPkg/MiscSubClassPlatformDxe/MiscSubclassDriverEntryPoint.c @@ -1,6 +1,6 @@ /*++
-Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR>
+Copyright (c) 2006 - 2012, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
@@ -77,8 +77,7 @@ LogMemorySmbiosRecord ( //
// Generate Memory Array Mapped Address info
//
- Type19Record = AllocatePool(sizeof (SMBIOS_TABLE_TYPE19));
- ZeroMem(Type19Record, sizeof(SMBIOS_TABLE_TYPE19));
+ Type19Record = AllocateZeroPool(sizeof (SMBIOS_TABLE_TYPE19) + 2);
Type19Record->Hdr.Type = EFI_SMBIOS_TYPE_MEMORY_ARRAY_MAPPED_ADDRESS;
Type19Record->Hdr.Length = sizeof(SMBIOS_TABLE_TYPE19);
Type19Record->Hdr.Handle = 0;
|