OcBootManagementLib: Avoid incorrect error propagation from the last entry scanned

This commit is contained in:
Download-Fritz 2019-10-13 18:53:04 +02:00
parent 9bcad3c87a
commit d2c9149525

View File

@ -310,6 +310,10 @@ OcScanForBootEntries (
return EFI_OUT_OF_RESOURCES;
}
}
//
// Errors from within the loop are not fatal.
//
Status = EFI_SUCCESS;
FreePool (Handles);