mirror of https://github.com/acidanthera/audk.git
Remove ASSERT() if ReadOnlyVariable2 PPI is not present. Instead, skip variable read if the PPI is not present.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5312 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
a163442495
commit
1ad76c3466
|
@ -276,8 +276,7 @@ DxeLoadCore (
|
|||
NULL,
|
||||
(VOID **)&Variable
|
||||
);
|
||||
ASSERT_EFI_ERROR (Status);
|
||||
|
||||
if (!EFI_ERROR (Status)) {
|
||||
DataSize = sizeof (MemoryData);
|
||||
Status = Variable->GetVariable (
|
||||
Variable,
|
||||
|
@ -287,7 +286,6 @@ DxeLoadCore (
|
|||
&DataSize,
|
||||
&MemoryData
|
||||
);
|
||||
|
||||
if (!EFI_ERROR (Status)) {
|
||||
//
|
||||
// Build the GUID'd HOB for DXE
|
||||
|
@ -298,6 +296,7 @@ DxeLoadCore (
|
|||
DataSize
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
// Look in all the FVs present in PEI and find the DXE Core
|
||||
|
|
Loading…
Reference in New Issue