mirror of https://github.com/acidanthera/audk.git
1. Enhanced error handling in case PXE DHCP process error happens.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12123 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
129b8b096f
commit
d5aff67358
|
@ -405,6 +405,10 @@ EfiPxeBcDhcp (
|
|||
//
|
||||
Status = PxeBcDhcp6Sarr (Private, Private->Dhcp6);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
return Status;
|
||||
}
|
||||
|
||||
//
|
||||
// Configure Udp6Read instance
|
||||
//
|
||||
|
@ -421,6 +425,10 @@ EfiPxeBcDhcp (
|
|||
//
|
||||
Status = PxeBcDhcp4Dora (Private, Private->Dhcp4);
|
||||
|
||||
if (EFI_ERROR (Status)) {
|
||||
return Status;
|
||||
}
|
||||
|
||||
//
|
||||
// Configure Udp4Read instance
|
||||
//
|
||||
|
|
Loading…
Reference in New Issue