summaryrefslogtreecommitdiff
path: root/Core/ShellPkg/Library
diff options
context:
space:
mode:
authorRuiyu Ni <ruiyu.ni@intel.com>2017-04-20 10:17:16 +0800
committerGuo Mang <mang.guo@intel.com>2017-07-12 11:24:21 +0800
commit2a98dcabb1d7a25d8eed5ad908f5cb1e0bc28f3d (patch)
treedb0e5e8d9d4248bd4e66a068c789d7e6140f4824 /Core/ShellPkg/Library
parent982d77f8abc10a872bf1407b579b274bdfdec8c2 (diff)
downloadedk2-platforms-2a98dcabb1d7a25d8eed5ad908f5cb1e0bc28f3d.tar.xz
ShellPkg/pci: Fix VS2012 build failure
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Ruiyu Ni <ruiyu.ni@intel.com> Reviewed-by: Hao A Wu <hao.a.wu@intel.com> Cc: Dandan Bi <dandan.bi@intel.com> (cherry picked from commit f1894fa294a17c17149c55ae21d4d85b2df3c1de)
Diffstat (limited to 'Core/ShellPkg/Library')
-rw-r--r--Core/ShellPkg/Library/UefiShellDebug1CommandsLib/Pci.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Core/ShellPkg/Library/UefiShellDebug1CommandsLib/Pci.c b/Core/ShellPkg/Library/UefiShellDebug1CommandsLib/Pci.c
index 99335f05c5..38559571c2 100644
--- a/Core/ShellPkg/Library/UefiShellDebug1CommandsLib/Pci.c
+++ b/Core/ShellPkg/Library/UefiShellDebug1CommandsLib/Pci.c
@@ -2885,6 +2885,7 @@ ShellCommandRunPci (
);
ExtendedConfigSpace = NULL;
+ ExtendedConfigSize = 0;
PcieCapabilityPtr = LocatePciCapability (&ConfigSpace, EFI_PCI_CAPABILITY_ID_PCIEXP);
if (PcieCapabilityPtr != 0) {
ExtendedConfigSize = 0x1000 - EFI_PCIE_CAPABILITY_BASE_OFFSET;
@@ -2922,7 +2923,7 @@ ShellCommandRunPci (
//
if (ExplainData) {
PciExplainPci (&ConfigSpace, Address, IoDev);
- if ((PcieCapabilityPtr != 0) && !ShellGetExecutionBreakFlag ()) {
+ if ((ExtendedConfigSpace != NULL) && !ShellGetExecutionBreakFlag ()) {
PciExplainPciExpress (
(PCI_CAPABILITY_PCIEXP *) ((UINT8 *) &ConfigSpace + PcieCapabilityPtr),
ExtendedConfigSpace,