aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Masotta <masottaus@yahoo.com>2015-06-26 22:30:16 -0400
committerGene Cumm <gene.cumm@gmail.com>2015-06-26 22:31:21 -0400
commita440fc625606e5cc3201ac9589c5ea8bb61819f3 (patch)
treeb5d2178764005a156bf58c5462cbc98238c7f77c
parent23b2707bd835d8a7158f9751134f427c6e743c40 (diff)
downloadsyslinux-a440fc625606e5cc3201ac9589c5ea8bb61819f3.tar.gz
syslinux-a440fc625606e5cc3201ac9589c5ea8bb61819f3.tar.xz
syslinux-a440fc625606e5cc3201ac9589c5ea8bb61819f3.zip
efi/pxe.c: missing return
Signed-off-by: Gene Cumm <gene.cumm@gmail.com>
-rw-r--r--efi/pxe.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/efi/pxe.c b/efi/pxe.c
index 82cdee47..df28d24a 100644
--- a/efi/pxe.c
+++ b/efi/pxe.c
@@ -102,6 +102,7 @@ void net_parse_dhcp(void)
&PxeBaseCodeProtocol, (void **)&bc);
if (status != EFI_SUCCESS) {
Print(L"Failed to lookup PxeBaseCodeProtocol\n");
+ return;
}
mode = bc->Mode;