2017-08-16 15:34:58 +00:00
|
|
|
From 174e79117b2996a9388c1cba6ac3bfbf053396c3 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
|
2017-08-16 15:14:30 +00:00
|
|
|
Subject: [PATCH 162/192] 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
|
2017-06-16 19:31:32 +00:00
|
|
|
index 82f75b7f3..010bf982d 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;
|
|
|
|
}
|
|
|
|
|
|
|
|
--
|
2017-08-16 15:14:30 +00:00
|
|
|
2.13.4
|
2016-08-25 18:42:57 +00:00
|
|
|
|