diff options
author | Tom Rini <trini@konsulko.com> | 2018-01-28 18:26:00 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-01-28 18:26:00 -0500 |
commit | bd39d86420434eb8139a111c2582366bc90e65c6 (patch) | |
tree | 072fe6ff300a984a8867c9d2506ed7906d435b2d /lib/efi_loader/efi_bootmgr.c | |
parent | f2ee91501892d3280a4c58093ad3a18dccd0b562 (diff) | |
parent | 29a8a2828e5c6f3f167a8526a80da992b4626daf (diff) |
Merge tag 'signed-efi-next' of git://github.com/agraf/u-boot
Patch queue for efi - 2018-01-28
This is the second part of patches for 2018.03-rc1, fixing
a few minor issues and adding a readme file for iSCSI booting.
Diffstat (limited to 'lib/efi_loader/efi_bootmgr.c')
-rw-r--r-- | lib/efi_loader/efi_bootmgr.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/efi_loader/efi_bootmgr.c b/lib/efi_loader/efi_bootmgr.c index 857d88a879..c96b9d48c5 100644 --- a/lib/efi_loader/efi_bootmgr.c +++ b/lib/efi_loader/efi_bootmgr.c @@ -120,11 +120,9 @@ static void *try_load_entry(uint16_t n, struct efi_device_path **device_path, if (lo.attributes & LOAD_OPTION_ACTIVE) { efi_status_t ret; - u16 *str = NULL; - debug("%s: trying to load \"%ls\" from: %ls\n", __func__, - lo.label, (str = efi_dp_str(lo.file_path))); - efi_free_pool(str); + debug("%s: trying to load \"%ls\" from %pD\n", + __func__, lo.label, lo.file_path); ret = efi_load_image_from_path(lo.file_path, &image); |