2018-04-11 18:42:03 +00:00
|
|
|
From 5ef3f00e6be3033092453a66f456b8dac8cd4f7c Mon Sep 17 00:00:00 2001
|
2016-08-25 18:42:57 +00:00
|
|
|
From: Peter Jones <pjones@redhat.com>
|
|
|
|
Date: Tue, 14 Jun 2016 09:50:25 -0400
|
2018-06-04 16:28:07 +00:00
|
|
|
Subject: [PATCH 160/243] linuxefi: fix double free on verification failure.
|
2016-08-25 18:42:57 +00:00
|
|
|
|
|
|
|
Signed-off-by: Peter Jones <pjones@redhat.com>
|
|
|
|
---
|
|
|
|
grub-core/loader/i386/efi/linux.c | 1 -
|
|
|
|
1 file changed, 1 deletion(-)
|
|
|
|
|
|
|
|
diff --git a/grub-core/loader/i386/efi/linux.c b/grub-core/loader/i386/efi/linux.c
|
2018-02-27 18:56:41 +00:00
|
|
|
index 82f75b7f3ab..010bf982d80 100644
|
2016-08-25 18:42:57 +00:00
|
|
|
--- a/grub-core/loader/i386/efi/linux.c
|
|
|
|
+++ b/grub-core/loader/i386/efi/linux.c
|
|
|
|
@@ -191,7 +191,6 @@ grub_cmd_linux (grub_command_t cmd __attribute__ ((unused)),
|
|
|
|
{
|
|
|
|
grub_error (GRUB_ERR_INVALID_COMMAND, N_("%s has invalid signature"),
|
|
|
|
argv[0]);
|
|
|
|
- grub_free (kernel);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
--
|
2018-06-04 16:28:07 +00:00
|
|
|
2.17.1
|
2016-08-25 18:42:57 +00:00
|
|
|
|