From: Simon Glass Date: Wed, 29 Dec 2021 18:57:47 +0000 (-0700) Subject: efi: Check for failure when initing the app X-Git-Url: http://git.dujemihanovic.xyz/login.html?a=commitdiff_plain;h=bc53a35ac526c575a91c12af21f7106d54f7a496;p=u-boot.git efi: Check for failure when initing the app The stub checks for failure with efi_init(). Add this for the app as well. It is unlikely that anything can be done, but we may as well stop. Signed-off-by: Simon Glass Reviewed-by: Heinrich Schuchardt --- diff --git a/lib/efi/efi_app.c b/lib/efi/efi_app.c index 214cef9430..32ed5a0d04 100644 --- a/lib/efi/efi_app.c +++ b/lib/efi/efi_app.c @@ -300,8 +300,11 @@ efi_status_t EFIAPI efi_main(efi_handle_t image, efi_status_t ret; /* Set up access to EFI data structures */ - efi_init(priv, "App", image, sys_table); - + ret = efi_init(priv, "App", image, sys_table); + if (ret) { + printf("Failed to set up U-Boot: err=%lx\n", ret); + return ret; + } efi_set_priv(priv); /*