]> git.proxmox.com Git - mirror_edk2.git/commitdiff
SecurityPkg: only clear HashInterface information
authorMarc-Andr? Lureau <marcandre.lureau@redhat.com>
Tue, 6 Mar 2018 20:27:18 +0000 (04:27 +0800)
committerZhang, Chao B <chao.b.zhang@intel.com>
Wed, 7 Mar 2018 13:46:11 +0000 (21:46 +0800)
The ZeroMem() call goes beyond the HashInterfaceHob structure, causing
HOB list corruption. Instead, just clear the HashInterface fields, as
I suppose was originally intended.

Cc: Jiewen Yao <jiewen.yao@intel.com>
Cc: Chao Zhang <chao.b.zhang@intel.com>
Cc: Star Zeng <star.zeng@intel.com>
Cc: Laszlo Ersek <lersek@redhat.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Marc-Andr? Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Jiewen Yao <jiewen.yao@intel.com>
Reviewed-by: Chao Zhang <chao.b.zhang@intel.com>
Reviewed-by: Star Zeng <star.zeng@intel.com>
SecurityPkg/Library/HashLibBaseCryptoRouter/HashLibBaseCryptoRouterPei.c

index dbee0f2531bc943906ce29cbdc7384927f2af902..361a4f6508a0e32f9660f3ef06458a89440c6532 100644 (file)
@@ -424,7 +424,8 @@ HashLibBaseCryptoRouterPeiConstructor (
     // This is the second execution of this module, clear the hash interface\r
     // information registered at its first execution.\r
     //\r
-    ZeroMem (&HashInterfaceHob->HashInterface, sizeof (*HashInterfaceHob) - sizeof (EFI_GUID));\r
+    ZeroMem (&HashInterfaceHob->HashInterface, sizeof (HashInterfaceHob->HashInterface));\r
+    HashInterfaceHob->HashInterfaceCount = 0;\r
   }\r
 \r
   //\r