Fix VS2005 build error
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7181 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@@ -622,13 +622,7 @@ InitializeFtwLite (
|
||||
|
||||
FtwLiteDevice = NULL;
|
||||
FtwLiteDevice = AllocatePool (sizeof (EFI_FTW_LITE_DEVICE) + Length);
|
||||
if (FtwLiteDevice != NULL) {
|
||||
Status = EFI_SUCCESS;
|
||||
} else {
|
||||
Status = EFI_OUT_OF_RESOURCES;
|
||||
}
|
||||
|
||||
ASSERT_EFI_ERROR (Status);
|
||||
ASSERT (FtwLiteDevice != NULL);
|
||||
|
||||
ZeroMem (FtwLiteDevice, sizeof (EFI_FTW_LITE_DEVICE));
|
||||
FtwLiteDevice->Signature = FTW_LITE_DEVICE_SIGNATURE;
|
||||
@@ -791,7 +785,8 @@ InitializeFtwLite (
|
||||
(FtwLiteDevice->FtwSpareLba == (EFI_LBA) (-1))
|
||||
) {
|
||||
DEBUG ((EFI_D_ERROR, "FtwLite: Working or spare FVB not ready\n"));
|
||||
ASSERT_EFI_ERROR (Status);
|
||||
FreePool (FtwLiteDevice);
|
||||
return EFI_ABORTED;
|
||||
}
|
||||
//
|
||||
// Refresh workspace data from working block
|
||||
@@ -831,6 +826,7 @@ InitializeFtwLite (
|
||||
//
|
||||
Status = WorkSpaceRefresh (FtwLiteDevice);
|
||||
if (EFI_ERROR (Status)) {
|
||||
FreePool (FtwLiteDevice);
|
||||
return EFI_ABORTED;
|
||||
}
|
||||
} else {
|
||||
@@ -850,6 +846,7 @@ InitializeFtwLite (
|
||||
Status = FtwReclaimWorkSpace (FtwLiteDevice, FALSE);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
FreePool (FtwLiteDevice);
|
||||
return EFI_ABORTED;
|
||||
}
|
||||
}
|
||||
@@ -869,6 +866,7 @@ InitializeFtwLite (
|
||||
&FtwLiteDevice->FtwLiteInstance
|
||||
);
|
||||
if (EFI_ERROR (Status)) {
|
||||
FreePool (FtwLiteDevice);
|
||||
return EFI_ABORTED;
|
||||
}
|
||||
//
|
||||
@@ -912,6 +910,7 @@ InitializeFtwLite (
|
||||
Status = FtwReclaimWorkSpace (FtwLiteDevice, TRUE);
|
||||
if (EFI_ERROR (Status)) {
|
||||
DEBUG ((EFI_D_FTW_LITE, "FtwLite: Workspace reclaim - %r\n", Status));
|
||||
FreePool (FtwLiteDevice);
|
||||
return EFI_ABORTED;
|
||||
}
|
||||
}
|
||||
|
@@ -468,6 +468,7 @@ UpdateDeviceSelectPage (
|
||||
//
|
||||
Len = StrSize (ControllerName);
|
||||
NewString = AllocateZeroPool (Len + StrSize (L"--"));
|
||||
ASSERT (NewString != NULL);
|
||||
if (EFI_ERROR (CheckMapping (ControllerDevicePath,NULL, &mMappingDataBase, NULL, NULL))) {
|
||||
StrCat (NewString, L"--");
|
||||
} else {
|
||||
@@ -762,6 +763,7 @@ UpdateBindingDriverSelectPage (
|
||||
// First create the driver image name
|
||||
//
|
||||
NewString = AllocateZeroPool (StrSize (DriverName));
|
||||
ASSERT (NewString != NULL);
|
||||
if (EFI_ERROR (CheckMapping (mControllerDevicePathProtocol[mSelectedCtrIndex], LoadedImageDevicePath, &mMappingDataBase, NULL, NULL))) {
|
||||
FakeNvData->DriSelection[Index] = 0x00;
|
||||
} else {
|
||||
@@ -894,7 +896,7 @@ UpdatePrioritySelectPage (
|
||||
}
|
||||
|
||||
IfrOptionList = AllocateZeroPool (sizeof (IFR_OPTION) * mSelectedDriverImageNum);
|
||||
ASSERT_EFI_ERROR (IfrOptionList != NULL);
|
||||
ASSERT (IfrOptionList != NULL);
|
||||
//
|
||||
// Create order list for those selected drivers
|
||||
//
|
||||
|
Reference in New Issue
Block a user