efibootmgr/efibootmgr-fix-usage-of-efi_loadopt_path-again.patch
Raymund Will 57037290b1 Accepting request 420697 from home:arvidjaar:bnc:993458
add efibootmgr-fix-usage-of-efi_loadopt_path-again.patch - fix
efibootmgr -v with new efivar (boo#993458)

efi_loadopt_path requires full length, not just pathlen. Patch adapted
from upstream.

OBS-URL: https://build.opensuse.org/request/show/420697
OBS-URL: https://build.opensuse.org/package/show/Base:System/efibootmgr?expand=0&rev=34
2016-08-23 10:22:58 +00:00

27 lines
826 B
Diff

From f5e09ec26bd03490903330f121b18b8aaa56cf85 Mon Sep 17 00:00:00 2001
From: Peter Jones <pjones@redhat.com>
Date: Tue, 24 May 2016 11:33:20 -0400
Subject: [PATCH] efibootmgr: fix usage of efi_loadopt_path() /again/.
Signed-off-by: Peter Jones <pjones@redhat.com>
---
src/efibootmgr.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/efibootmgr.c b/src/efibootmgr.c
index baefa68..199eb28 100644
--- a/src/efibootmgr/efibootmgr.c
+++ b/src/efibootmgr/efibootmgr.c
@@ -848,7 +848,7 @@ show_boot_vars()
pathlen = efi_loadopt_pathlen(load_option,
boot->data_size);
- dp = efi_loadopt_path(load_option, pathlen);
+ dp = efi_loadopt_path(load_option, boot->data_size);
rc = efidp_format_device_path(text_path, text_path_len,
dp, pathlen);
if (rc < 0)
--
1.9.1