X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=NetworkPkg%2FUefiPxeBcDxe%2FPxeBcSupport.c;h=88ae7b6a7a145c18097ef3ba9f55a4b8d75eb6bc;hb=cd9944d72a2b51004efecdcf024a173721f1b3d1;hp=f918d6a29893e1fc24e0e566bde06f86820e852c;hpb=f43b7a54120e4fdff62d149f78c244148c20d7a8;p=mirror_edk2.git diff --git a/NetworkPkg/UefiPxeBcDxe/PxeBcSupport.c b/NetworkPkg/UefiPxeBcDxe/PxeBcSupport.c index f918d6a298..88ae7b6a7a 100644 --- a/NetworkPkg/UefiPxeBcDxe/PxeBcSupport.c +++ b/NetworkPkg/UefiPxeBcDxe/PxeBcSupport.c @@ -1,7 +1,7 @@ /** @file Support functions implementation for UefiPxeBc Driver. - Copyright (c) 2007 - 2011, Intel Corporation. All rights reserved.
+ Copyright (c) 2007 - 2014, Intel Corporation. All rights reserved.
This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License @@ -28,7 +28,7 @@ **/ EFI_STATUS -PxeBcFlushStaionIp ( +PxeBcFlushStationIp ( PXEBC_PRIVATE_DATA *Private, EFI_IP_ADDRESS *StationIp, EFI_IP_ADDRESS *SubnetMask OPTIONAL @@ -59,10 +59,6 @@ PxeBcFlushStaionIp ( } Status = Private->Ip6->Receive (Private->Ip6, &Private->Icmp6Token); - if (EFI_ERROR (Status)) { - goto ON_EXIT; - } - } else { ASSERT (SubnetMask != NULL); CopyMem (&Private->Udp4CfgData.StationAddress, StationIp, sizeof (EFI_IPv4_ADDRESS)); @@ -82,10 +78,6 @@ PxeBcFlushStaionIp ( } Status = Private->Ip4->Receive (Private->Ip4, &Private->IcmpToken); - if (EFI_ERROR (Status)) { - goto ON_EXIT; - } - } ON_EXIT: