diff options
| author | Tom Rini <[email protected]> | 2023-07-11 13:27:32 -0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-07-11 13:27:32 -0400 |
| commit | 8e21064cb3452950b09301baec06d86e37342471 (patch) | |
| tree | a54f8b93191c102403147e44d8fd2fb2c9c9b65f /cmd | |
| parent | 7876a695468c9bc17a6dc02054da101450468a40 (diff) | |
| parent | e05a4b12a056fd7fe22e85715c8f5e5e811fb551 (diff) | |
Merge tag 'efi-2023-07-rc7' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request efi-2023-07-rc7
Documentation:
* Fix links to Linux kernel documentation
UEFI:
* Fix memory leak in efidebug dh subcommand
* Fix underflow when calculating remaining variable store size
* Increase default variable store size to 64 KiB
* mkeficapsule: fix efi_firmware_management_capsule_header data type
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/efidebug.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/efidebug.c b/cmd/efidebug.c index 9622430c475..0be3af3e763 100644 --- a/cmd/efidebug.c +++ b/cmd/efidebug.c @@ -486,6 +486,7 @@ static int do_efi_show_handles(struct cmd_tbl *cmdtp, int flag, if (guidcmp(guid[j], &efi_guid_device_path)) printf(" %pUs\n", guid[j]); } + efi_free_pool(guid); } efi_free_pool(handles); |
