diff mbox series

[1/1] cmd: eficonfig: check initrd path allocation

Message ID 20240417160125.117405-1-heinrich.schuchardt@canonical.com
State Accepted, archived
Commit 8afeab4cdf5e7babdf86c2c86d527badada7da1d
Delegated to: Heinrich Schuchardt
Headers show
Series [1/1] cmd: eficonfig: check initrd path allocation | expand

Commit Message

Heinrich Schuchardt April 17, 2024, 4:01 p.m. UTC
After allocating memory for the initrd file path we need to check the
initrd buffer pointer is not NULL.

Fixes: 87d791423ac6 ("eficonfig: menu-driven addition of UEFI boot option")
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
---
 cmd/eficonfig.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/cmd/eficonfig.c b/cmd/eficonfig.c
index 8234e602b8f..0ba92c60e03 100644
--- a/cmd/eficonfig.c
+++ b/cmd/eficonfig.c
@@ -1419,7 +1419,7 @@  static efi_status_t eficonfig_edit_boot_option(u16 *varname, struct eficonfig_bo
 	}
 
 	bo->initrd_info.current_path = calloc(1, EFICONFIG_FILE_PATH_BUF_SIZE);
-	if (!bo->file_info.current_path) {
+	if (!bo->initrd_info.current_path) {
 		ret =  EFI_OUT_OF_RESOURCES;
 		goto out;
 	}