mirror of https://github.com/acidanthera/audk.git
Update code to pass build on VS2008 with /Od compiler option.
Signed-off-by: lgao4 Reviewed-by: rsun3 git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12791 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
573e0a48c8
commit
a661e27f7a
|
@ -108,7 +108,7 @@ ProcessCapsuleImage (
|
|||
//
|
||||
// Allocate new aligned buffer to store FvImage.
|
||||
//
|
||||
ProcessedFvImage = (EFI_FIRMWARE_VOLUME_HEADER *) AllocateAlignedPages ((UINTN) EFI_SIZE_TO_PAGES (FvImage->FvLength), (UINTN) FvAlignment);
|
||||
ProcessedFvImage = (EFI_FIRMWARE_VOLUME_HEADER *) AllocateAlignedPages ((UINTN) EFI_SIZE_TO_PAGES ((UINTN) FvImage->FvLength), (UINTN) FvAlignment);
|
||||
if (ProcessedFvImage == NULL) {
|
||||
Status = EFI_OUT_OF_RESOURCES;
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue