summaryrefslogtreecommitdiff
path: root/lib/efi_loader/efi_boottime.c
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2022-11-16 11:08:51 -0500
committerTom Rini <trini@konsulko.com>2022-11-16 11:08:51 -0500
commitbebb393b340295edb9ba50a996fc0510cd1b6ac0 (patch)
tree3eda675d84dbfedc19aed9b6da8fd1c7a5574930 /lib/efi_loader/efi_boottime.c
parentd78cccb1acd683083560d71753c116c6e38e2491 (diff)
parenta930d69baa958d5f308b3910187c5f3c083fe171 (diff)
Merge tag 'efi-2023-01-rc2' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request for efi-2023-01-rc2 Documentation: * fix building with Sphinx 5.0+ * man-pages for cmp and bootd commands UEFI: * Avoid unaligned access in efi_file_from_path() * More bug fixes
Diffstat (limited to 'lib/efi_loader/efi_boottime.c')
-rw-r--r--lib/efi_loader/efi_boottime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_loader/efi_boottime.c b/lib/efi_loader/efi_boottime.c
index a56021559bb..253f9f75ef6 100644
--- a/lib/efi_loader/efi_boottime.c
+++ b/lib/efi_loader/efi_boottime.c
@@ -2754,7 +2754,7 @@ efi_uninstall_multiple_protocol_interfaces_int(efi_handle_t handle,
{
const efi_guid_t *protocol;
void *protocol_interface;
- efi_status_t ret;
+ efi_status_t ret = EFI_SUCCESS;
size_t i = 0;
efi_va_list argptr_copy;