summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2019-03-21 13:07:42 -0400
committerTom Rini <[email protected]>2019-03-21 13:07:42 -0400
commitb94b19e729895285cd0c9ed170d20038173d4f07 (patch)
treeeaa8af4493f2ef06e58bd5ce6a6e50d64a8f0e29 /cmd
parent3d7891d3f3b67a0d150b38afccc0765bd19b0bd2 (diff)
parentd0bd87612f410a723d5ddb3001e805485e3efb4f (diff)
Merge tag 'efi-2019-04-rc5' of git://git.denx.de/u-boot-efi
Pull request for UEFI system for v2019.04-rc5 A bunch of small fixes. The major ones being - avoid illegal memory access in efi_allocate_pool() on 32 bit systems - avoid endless loop in HII protocol
Diffstat (limited to 'cmd')
-rw-r--r--cmd/nvedit_efi.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/cmd/nvedit_efi.c b/cmd/nvedit_efi.c
index ca32566a615..e65b38dbf39 100644
--- a/cmd/nvedit_efi.c
+++ b/cmd/nvedit_efi.c
@@ -80,7 +80,6 @@ static void efi_dump_single_var(u16 *name, efi_guid_t *guid)
printf(", DataSize = 0x%zx\n", size);
print_hex_dump(" ", DUMP_PREFIX_OFFSET, 16, 1, data, size, true);
- return;
out:
free(data);
}