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:
hhuan13 2011-08-12 06:23:05 +00:00
parent 129b8b096f
commit d5aff67358
1 changed files with 8 additions and 0 deletions

View File

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