summaryrefslogtreecommitdiffstats
path: root/ShellPkg
diff options
context:
space:
mode:
authorRuiyu Ni <ruiyu.ni@intel.com>2017-04-20 10:17:16 +0800
committerRuiyu Ni <ruiyu.ni@intel.com>2017-04-20 11:04:50 +0800
commitf1894fa294a17c17149c55ae21d4d85b2df3c1de (patch)
treea5484798b70d292a4c344c3e314a51119de1240f /ShellPkg
parenta32c1a5b1c0945a7159a42a28aafcde4011ad55d (diff)
downloadedk2-f1894fa294a17c17149c55ae21d4d85b2df3c1de.tar.gz
edk2-f1894fa294a17c17149c55ae21d4d85b2df3c1de.tar.bz2
edk2-f1894fa294a17c17149c55ae21d4d85b2df3c1de.zip
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>
Diffstat (limited to 'ShellPkg')
-rw-r--r--ShellPkg/Library/UefiShellDebug1CommandsLib/Pci.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ShellPkg/Library/UefiShellDebug1CommandsLib/Pci.c b/ShellPkg/Library/UefiShellDebug1CommandsLib/Pci.c
index 99335f05c5..38559571c2 100644
--- a/ShellPkg/Library/UefiShellDebug1CommandsLib/Pci.c
+++ b/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,