summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRay Ni <ray.ni@intel.com>2021-05-01 18:42:36 +0800
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2021-06-16 07:51:00 +0000
commitab2b389e7afc19ca87574eb4594eaf26ca2d4135 (patch)
tree583cff318f2a00cf871afbcd4725eca5118ac065
parentfe471d4a578e5aeda4c246e27678a984bb179e00 (diff)
downloadedk2-ab2b389e7afc19ca87574eb4594eaf26ca2d4135.tar.gz
edk2-ab2b389e7afc19ca87574eb4594eaf26ca2d4135.tar.bz2
edk2-ab2b389e7afc19ca87574eb4594eaf26ca2d4135.zip
PeiCore: Remove assertion when failing to load PE image
EFI_PEI_LOAD_FILE_PPI is invoked by DxeIpl for loading DxeCore. It's possible that the instance produced by PeiCore fails to load but other instances of EFI_PEI_LOAD_FILE_PPI can load. Signed-off-by: Ray Ni <ray.ni@intel.com> Cc: Jian J Wang <jian.j.wang@intel.com> Acked-by: Hao A Wu <hao.a.wu@intel.com> Cc: Dandan Bi <dandan.bi@intel.com> Cc: Liming Gao <gaoliming@byosoft.com.cn>
-rw-r--r--MdeModulePkg/Core/Pei/Image/Image.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/MdeModulePkg/Core/Pei/Image/Image.c b/MdeModulePkg/Core/Pei/Image/Image.c
index 1d15774527..5af3895191 100644
--- a/MdeModulePkg/Core/Pei/Image/Image.c
+++ b/MdeModulePkg/Core/Pei/Image/Image.c
@@ -1,7 +1,7 @@
/** @file
Pei Core Load Image Support
-Copyright (c) 2006 - 2019, Intel Corporation. All rights reserved.<BR>
+Copyright (c) 2006 - 2021, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
@@ -661,9 +661,6 @@ PeiLoadImageLoadImage (
&ImageEntryPoint
);
- ASSERT_EFI_ERROR (Status);
-
-
if (EFI_ERROR (Status)) {
return Status;
}