summaryrefslogtreecommitdiffstats
path: root/SecurityPkg/VariableAuthenticated
diff options
context:
space:
mode:
authorStar Zeng <star.zeng@intel.com>2016-06-02 14:38:03 +0800
committerStar Zeng <star.zeng@intel.com>2016-06-03 15:01:05 +0800
commit5b03f1b5145dd7e4b3ac7bcdd05f03597b461989 (patch)
tree91f05c236bbef4af4eb480d85c856556911c876d /SecurityPkg/VariableAuthenticated
parentda2369d21d2e57a0de8fa7ae954812122c87326e (diff)
downloadedk2-5b03f1b5145dd7e4b3ac7bcdd05f03597b461989.tar.gz
edk2-5b03f1b5145dd7e4b3ac7bcdd05f03597b461989.tar.bz2
edk2-5b03f1b5145dd7e4b3ac7bcdd05f03597b461989.zip
SecurityPkg EsalVariableDxeSal: Use input Global to make code more clear
SecurityPkg\VariableAuthenticated\EsalVariableDxeSal\Variable.c AutoUpdateLangVariable() Global->PlatformLangCodes[VirtualMode] = AllocateRuntimeCopyPool (DataSize, Data); ASSERT (mVariableModuleGlobal->PlatformLangCodes[VirtualMode] != NULL); The patch is to use Global instead of mVariableModuleGlobal in the ASSERT (XXX) to make code more clear although mVariableModuleGlobal is equal to Global actually. Cc: Chao Zhang <chao.b.zhang@intel.com> Cc: Amy Chan <amy.chan@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Star Zeng <star.zeng@intel.com> Reviewed-by: Chao Zhang <chao.b.zhang@intel.com> Reviewed-by: Amy Chan <amy.chan@intel.com> Reviewed-by: Giri P Mudusuru <giri.p.mudusuru@intel.com>
Diffstat (limited to 'SecurityPkg/VariableAuthenticated')
-rw-r--r--SecurityPkg/VariableAuthenticated/EsalVariableDxeSal/Variable.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/SecurityPkg/VariableAuthenticated/EsalVariableDxeSal/Variable.c b/SecurityPkg/VariableAuthenticated/EsalVariableDxeSal/Variable.c
index 9b167552bb..dfa85973f4 100644
--- a/SecurityPkg/VariableAuthenticated/EsalVariableDxeSal/Variable.c
+++ b/SecurityPkg/VariableAuthenticated/EsalVariableDxeSal/Variable.c
@@ -1,7 +1,7 @@
/** @file
The implementation of Extended SAL variable services.
-Copyright (c) 2009 - 2015, Intel Corporation. All rights reserved.<BR>
+Copyright (c) 2009 - 2016, 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
@@ -1661,7 +1661,7 @@ AutoUpdateLangVariable(
FreePool (Global->PlatformLangCodes[VirtualMode]);
}
Global->PlatformLangCodes[VirtualMode] = AllocateRuntimeCopyPool (DataSize, Data);
- ASSERT (mVariableModuleGlobal->PlatformLangCodes[VirtualMode] != NULL);
+ ASSERT (Global->PlatformLangCodes[VirtualMode] != NULL);
//
// PlatformLang holds a single language from PlatformLangCodes,