dcavalca / rpms / grub2

Forked from rpms/grub2 3 years ago
Clone
8631a2
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
8631a2
From: Matthew Garrett <mjg59@coreos.com>
8631a2
Date: Tue, 29 Mar 2016 15:36:49 -0700
8631a2
Subject: [PATCH] Fix event log prefix
8631a2
8631a2
We're not passing the prefixed version of the description to the event log.
8631a2
Fix that.
8631a2
8631a2
(cherry picked from commit aab446306b8a78c741e229861c4988738cfc6426)
8631a2
---
8631a2
 grub-core/kern/tpm.c | 2 +-
8631a2
 1 file changed, 1 insertion(+), 1 deletion(-)
8631a2
8631a2
diff --git a/grub-core/kern/tpm.c b/grub-core/kern/tpm.c
8631a2
index cb5a812035d..e5e8fced624 100644
8631a2
--- a/grub-core/kern/tpm.c
8631a2
+++ b/grub-core/kern/tpm.c
8631a2
@@ -13,7 +13,7 @@ grub_tpm_measure (unsigned char *buf, grub_size_t size, grub_uint8_t pcr,
8631a2
   char *desc = grub_xasprintf("%s %s", kind, description);
8631a2
   if (!desc)
8631a2
     return GRUB_ERR_OUT_OF_MEMORY;
8631a2
-  ret = grub_tpm_log_event(buf, size, pcr, description);
8631a2
+  ret = grub_tpm_log_event(buf, size, pcr, desc);
8631a2
   grub_free(desc);
8631a2
   return ret;
8631a2
 }