mirror of https://github.com/acidanthera/audk.git
1. Add error handling for PXE-IPV6.
Signed-off-by: hhuan13 Reviewed-by: tye git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11720 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
a7a394a483
commit
278c601958
|
@ -1,7 +1,7 @@
|
||||||
/** @file
|
/** @file
|
||||||
Boot functions implementation for UefiPxeBc Driver.
|
Boot functions implementation for UefiPxeBc Driver.
|
||||||
|
|
||||||
Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2009 - 2011, Intel Corporation. All rights reserved.<BR>
|
||||||
|
|
||||||
This program and the accompanying materials
|
This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
are licensed and made available under the terms and conditions of the BSD License
|
||||||
|
@ -1074,6 +1074,9 @@ PxeBcLoadBootFile (
|
||||||
// Discover the boot information about the bootfile if hasn't.
|
// Discover the boot information about the bootfile if hasn't.
|
||||||
//
|
//
|
||||||
Status = PxeBcDiscoverBootFile (Private, &RequiredSize);
|
Status = PxeBcDiscoverBootFile (Private, &RequiredSize);
|
||||||
|
if (EFI_ERROR (Status)) {
|
||||||
|
goto ON_EXIT;
|
||||||
|
}
|
||||||
|
|
||||||
if (PXEBC_IS_SIZE_OVERFLOWED (RequiredSize)) {
|
if (PXEBC_IS_SIZE_OVERFLOWED (RequiredSize)) {
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in New Issue