diff options
author | Chao Zhang <chao.b.zhang@intel.com> | 2015-06-09 05:20:06 +0000 |
---|---|---|
committer | czhang46 <czhang46@Edk2> | 2015-06-09 05:20:06 +0000 |
commit | d863e127a25b2195ca0e01f2c92f139a573e15e9 (patch) | |
tree | 1094242c0742d3f5b597fd25c13e5a7d4287530f /SecurityPkg/Library/DxeImageVerificationLib | |
parent | 5e30b69eb4027f4fc6c8ef78d1961e7c78d80683 (diff) | |
download | edk2-platforms-d863e127a25b2195ca0e01f2c92f139a573e15e9.tar.xz |
SecurityPkg: Fix wrong cert data measurement in DBX path
Fix wrong cert data measurement when image is rejected by DBX
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Chao Zhang <chao.b.zhang@intel.com>
Reviewed-by: Long Qin <qin.long@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17591 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'SecurityPkg/Library/DxeImageVerificationLib')
-rw-r--r-- | SecurityPkg/Library/DxeImageVerificationLib/DxeImageVerificationLib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SecurityPkg/Library/DxeImageVerificationLib/DxeImageVerificationLib.c b/SecurityPkg/Library/DxeImageVerificationLib/DxeImageVerificationLib.c index 9a61723530..d7e286b735 100644 --- a/SecurityPkg/Library/DxeImageVerificationLib/DxeImageVerificationLib.c +++ b/SecurityPkg/Library/DxeImageVerificationLib/DxeImageVerificationLib.c @@ -1294,7 +1294,7 @@ IsForbiddenByDbx ( mImageDigestSize
);
if (IsForbidden) {
- SecureBootHook (EFI_IMAGE_SECURITY_DATABASE1, &gEfiImageSecurityDatabaseGuid, CertList->SignatureSize, Cert);
+ SecureBootHook (EFI_IMAGE_SECURITY_DATABASE1, &gEfiImageSecurityDatabaseGuid, CertList->SignatureSize, CertData);
goto Done;
}
|