mirror of
https://github.com/acidanthera/audk.git
synced 2025-04-08 17:05:09 +02:00
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…
x
Reference in New Issue
Block a user