Blame SOURCES/0081-grub-core-commands-verify.c-grub_pubkey_open-Fix-mem.patch

d41074
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
a85e8e
From: Vladimir Serbinenko <phcoder@gmail.com>
a85e8e
Date: Mon, 12 May 2014 10:01:48 +0200
d41074
Subject: [PATCH] * grub-core/commands/verify.c (grub_pubkey_open): Fix memdisk
d41074
 check.
a85e8e
a85e8e
---
a85e8e
 grub-core/commands/verify.c | 2 +-
d41074
 ChangeLog                   | 5 +++++
a85e8e
 2 files changed, 6 insertions(+), 1 deletion(-)
a85e8e
a85e8e
diff --git a/grub-core/commands/verify.c b/grub-core/commands/verify.c
d41074
index a9dfd885247..6349ccfbaea 100644
a85e8e
--- a/grub-core/commands/verify.c
a85e8e
+++ b/grub-core/commands/verify.c
a85e8e
@@ -835,7 +835,7 @@ grub_pubkey_open (grub_file_t io, const char *filename)
a85e8e
 
a85e8e
   if (!sec)
a85e8e
     return io;
a85e8e
-  if (io->device->disk && io->device->disk->id == GRUB_DISK_DEVICE_MEMDISK_ID)
a85e8e
+  if (io->device->disk && io->device->disk->dev->id == GRUB_DISK_DEVICE_MEMDISK_ID)
a85e8e
     return io;
a85e8e
   fsuf = grub_malloc (grub_strlen (filename) + sizeof (".sig"));
a85e8e
   if (!fsuf)
d41074
diff --git a/ChangeLog b/ChangeLog
d41074
index 3b61c0a996d..d0896d89e53 100644
d41074
--- a/ChangeLog
d41074
+++ b/ChangeLog
d41074
@@ -1,3 +1,8 @@
d41074
+2014-06-21  Vladimir Serbinenko  <phcoder@gmail.com>
d41074
+
d41074
+	* grub-core/commands/verify.c (grub_pubkey_open): Fix memdisk
d41074
+	check.
d41074
+
d41074
 2014-04-20  Vladimir Serbinenko  <phcoder@gmail.com>
d41074
 
d41074
 	* grub-core/kern/misc.c (__bzero): Don't compile in GRUB_UTIL.