diff options
| author | Tom Rini <[email protected]> | 2026-02-06 12:35:44 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-02-06 12:35:44 -0600 |
| commit | e5e75ea8c7b8e6d9ce1ca8ec7a25fa8b3f6029a9 (patch) | |
| tree | e9e37d639663dbeea4baaa48c391ba06b2e9568b /lib/efi_loader/efi_debug_support.c | |
| parent | a54d613baf742a95b6deb7a016ef6262737d1918 (diff) | |
| parent | 36e321b487a9ac73c2dfb9cbaadb0244f70f66fb (diff) | |
Merge tag 'efi-2026-04-rc2' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request efi-2026-04-rc2
CI: https://source.denx.de/u-boot/custodians/u-boot-efi/-/pipelines/29203
Documentation:
* Remove pip from requirements.txt
* develop/process: Clarify name usage in the Signed-off-by line
UEFI:
* Improve EFI variable load message
* Fix use after free in efi_exit() with tcg2
* Fix efi_debug_image_info_normal allocation
* Add missing EFI_CALL in efi_net
Diffstat (limited to 'lib/efi_loader/efi_debug_support.c')
| -rw-r--r-- | lib/efi_loader/efi_debug_support.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_loader/efi_debug_support.c b/lib/efi_loader/efi_debug_support.c index 490b0bb7088..8d0c133871e 100644 --- a/lib/efi_loader/efi_debug_support.c +++ b/lib/efi_loader/efi_debug_support.c @@ -111,7 +111,7 @@ efi_status_t efi_core_new_debug_image_info_entry(u32 image_info_type, /* Allocate data for new entry. */ ret = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, - sizeof(union efi_debug_image_info), + sizeof(struct efi_debug_image_info_normal), (void **)(&(*table)[index].normal_image)); if (ret == EFI_SUCCESS && (*table)[index].normal_image) { /* Update the entry. */ |
