OcAppleKernelLib: Fix more BOOLEAN->EFI_STATUS.

This commit is contained in:
Download-Fritz 2019-03-28 09:52:42 +01:00
parent 3906be2bc8
commit c8e4fe99da

View File

@ -371,7 +371,7 @@ InternalScanBuildLinkedVtables (
&VtableMaxSize
);
if ((VtableData == NULL) || !OC_ALIGNED (VtableData)) {
return FALSE;
return EFI_UNSUPPORTED;
}
Result = InternalGetVtableEntries64 (
@ -380,7 +380,7 @@ InternalScanBuildLinkedVtables (
&NumEntriesTemp
);
if (!Result) {
return FALSE;
return EFI_UNSUPPORTED;
}
VtableLookups[Index].Vtable.Data = VtableData;