From c2f645c7cd9872585e7b4522b01c368bb545258b Mon Sep 17 00:00:00 2001 From: Gary Lin Date: Mon, 28 May 2018 18:03:39 +0800 Subject: httpboot: show the error message for the ChildHandle Signed-off-by: Gary Lin Upstream-commit-id: 0fd3c7e8518 --- httpboot.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'httpboot.c') diff --git a/httpboot.c b/httpboot.c index 16dd6621..3622e858 100644 --- a/httpboot.c +++ b/httpboot.c @@ -696,8 +696,10 @@ http_fetch (EFI_HANDLE image, EFI_HANDLE device, /* Set the handle to NULL to request a new handle */ http_handle = NULL; efi_status = service->CreateChild(service, &http_handle); - if (EFI_ERROR(efi_status)) + if (EFI_ERROR(efi_status)) { + perror(L"Failed to create the ChildHandle\n"); return efi_status; + } /* Get the http protocol */ efi_status = gBS->HandleProtocol(http_handle, &EFI_HTTP_PROTOCOL_GUID, -- cgit v1.2.3