diff options
author | Long, Qin <qin.long@intel.com> | 2015-02-05 05:37:10 +0000 |
---|---|---|
committer | qlong <qlong@Edk2> | 2015-02-05 05:37:10 +0000 |
commit | 3f63bc365d685375ffcfa09a74ec79288fa572ef (patch) | |
tree | 959cf7b744c5bcd34f678172cdfade1774e11497 /SecurityPkg | |
parent | 5d6507a14687f133d2ab8643ad274b22e578a907 (diff) | |
download | edk2-platforms-3f63bc365d685375ffcfa09a74ec79288fa572ef.tar.xz |
Add the missed local variable initialization to remove the possible warning.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: "Long, Qin" <qin.long@intel.com>
Reviewed-by: "Fu, Siyuan" <siyuan.fu@intel.com>
Reviewed-by: "Dong, Guo" <guo.dong@initel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16763 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'SecurityPkg')
-rw-r--r-- | SecurityPkg/Library/DxeImageVerificationLib/DxeImageVerificationLib.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/SecurityPkg/Library/DxeImageVerificationLib/DxeImageVerificationLib.c b/SecurityPkg/Library/DxeImageVerificationLib/DxeImageVerificationLib.c index c01ffda616..a713d0d4ae 100644 --- a/SecurityPkg/Library/DxeImageVerificationLib/DxeImageVerificationLib.c +++ b/SecurityPkg/Library/DxeImageVerificationLib/DxeImageVerificationLib.c @@ -1396,6 +1396,7 @@ IsAllowedByDb ( CertList = NULL;
Cert = NULL;
RootCert = NULL;
+ DbxData = NULL;
RootCertSize = 0;
VerifyStatus = FALSE;
|