diff options
author | Tom Rini <trini@konsulko.com> | 2024-07-31 07:20:32 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-07-31 07:20:32 -0600 |
commit | 4793b683b3ae4aaad9785c36e1d9cc71613a4253 (patch) | |
tree | fd6bf04ca23dc979e4ec580d569c95f77dd68b01 /lib/efi_loader/efi_helper.c | |
parent | 8877bc51a8a4d921ba2f163208b8b1a57ba47c18 (diff) | |
parent | 939afc80b6b5de23d70789f3cb3a391dd31319b1 (diff) |
Merge tag 'efi-2024-10-rc2' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request efi-2024-10-rc2
Documentation:
* Add a description for bootmeth_android
UEFI:
* Provide and use function list_count_nodes()
* Require EFI boot manager for EBBR compliance
* Correct check in efi_load_option_dp_join()
* Adjust config options for capsule updates
SMBIOS:
* Add extended Extended BIOS ROM Size
Diffstat (limited to 'lib/efi_loader/efi_helper.c')
-rw-r--r-- | lib/efi_loader/efi_helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_loader/efi_helper.c b/lib/efi_loader/efi_helper.c index 348612c3dad..65d2116381a 100644 --- a/lib/efi_loader/efi_helper.c +++ b/lib/efi_loader/efi_helper.c @@ -133,7 +133,7 @@ efi_status_t efi_load_option_dp_join(struct efi_device_path **dp, *dp = efi_dp_concat(tmp_dp, fdt_dp, *dp_size); efi_free_pool(tmp_dp); - if (!dp) + if (!*dp) return EFI_OUT_OF_RESOURCES; *dp_size += efi_dp_size(fdt_dp) + sizeof(END); } |