2021-05-18 06:38:48 +00:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Daniel Kiper <daniel.kiper@oracle.com>
|
|
|
|
Date: Thu, 14 Mar 2019 16:18:31 +0100
|
|
|
|
Subject: [PATCH] verifiers: IA-64 fallout cleanup
|
|
|
|
|
|
|
|
IA-64 fallout cleanup after commit 4d4a8c96e (verifiers: Add possibility
|
|
|
|
to verify kernel and modules command lines).
|
|
|
|
|
|
|
|
Signed-off-by: Daniel Kiper <daniel.kiper@oracle.com>
|
|
|
|
Reviewed-by: Ross Philipson <ross.philipson@oracle.com>
|
|
|
|
---
|
|
|
|
grub-core/loader/ia64/efi/linux.c | 3 +--
|
|
|
|
1 file changed, 1 insertion(+), 2 deletions(-)
|
|
|
|
|
|
|
|
diff --git a/grub-core/loader/ia64/efi/linux.c b/grub-core/loader/ia64/efi/linux.c
|
2022-05-10 07:20:45 +00:00
|
|
|
index 2ad0b0c04..cfeb2c145 100644
|
2021-05-18 06:38:48 +00:00
|
|
|
--- a/grub-core/loader/ia64/efi/linux.c
|
|
|
|
+++ b/grub-core/loader/ia64/efi/linux.c
|
|
|
|
@@ -547,8 +547,7 @@ grub_cmd_linux (grub_command_t cmd __attribute__ ((unused)),
|
|
|
|
|
|
|
|
*p = '\0';
|
|
|
|
|
|
|
|
- err = grub_verify_string (cmdline, GRUB_VERIFY_KERNEL_CMDLINE);
|
|
|
|
- if (err)
|
|
|
|
+ if (grub_verify_string (cmdline, GRUB_VERIFY_KERNEL_CMDLINE))
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
boot_param->command_line = (grub_uint64_t) cmdline;
|