You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
775 B
22 lines
775 B
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 |
|
From: Peter Jones <pjones@redhat.com> |
|
Date: Tue, 14 Jun 2016 09:50:25 -0400 |
|
Subject: [PATCH] linuxefi: fix double free on verification failure. |
|
|
|
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 |
|
index 82f75b7f3ab..010bf982d80 100644 |
|
--- 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; |
|
} |
|
|
|
|