diff options
author | Yao, Jiewen <Jiewen.Yao@intel.com> | 2015-08-17 00:43:10 +0000 |
---|---|---|
committer | jyao1 <jyao1@Edk2> | 2015-08-17 00:43:10 +0000 |
commit | c533ed3ebbe6e20fb1e27580d61e32e174643455 (patch) | |
tree | c69f5bd466a8eab96b339ac5cfc499c2d27f1f85 /SecurityPkg | |
parent | 5dd08a463d5ca40b2ee3a8a0639c846e68265b92 (diff) | |
download | edk2-c533ed3ebbe6e20fb1e27580d61e32e174643455.tar.gz edk2-c533ed3ebbe6e20fb1e27580d61e32e174643455.tar.bz2 edk2-c533ed3ebbe6e20fb1e27580d61e32e174643455.zip |
Fix typo in BaseCrypto2HashInit() which causes sanity check incorrect.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: "Yao, Jiewen" <Jiewen.Yao@intel.com>
Reviewed-by: "Zhang, Chao B" <chao.b.zhang@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@18224 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'SecurityPkg')
-rw-r--r-- | SecurityPkg/Hash2DxeCrypto/Hash2DxeCrypto.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SecurityPkg/Hash2DxeCrypto/Hash2DxeCrypto.c b/SecurityPkg/Hash2DxeCrypto/Hash2DxeCrypto.c index 6a7ecf2a2d..dab0299236 100644 --- a/SecurityPkg/Hash2DxeCrypto/Hash2DxeCrypto.c +++ b/SecurityPkg/Hash2DxeCrypto/Hash2DxeCrypto.c @@ -454,7 +454,7 @@ BaseCrypto2HashInit ( // Consistency Check
//
Instance = HASH2_INSTANCE_DATA_FROM_THIS(This);
- if ((Instance->HashContext != NULL) || (Instance->HashInfoContext != HashInfo)) {
+ if ((Instance->HashContext != NULL) || (Instance->HashInfoContext != NULL)) {
return EFI_ALREADY_STARTED;
}
|