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:
lgao4
2009-01-05 02:20:16 +00:00
parent 54cdf471a0
commit 779808545d
6 changed files with 15 additions and 13 deletions

View File

@ -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
//