Blame SOURCES/0479-kern-mm-Fix-grub_debug_calloc-compilation-error.patch

9723a8
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
9723a8
From: Marco A Benatto <mbenatto@redhat.com>
9723a8
Date: Tue, 9 Feb 2021 12:33:06 -0300
9723a8
Subject: [PATCH] kern/mm: Fix grub_debug_calloc() compilation error
9723a8
9723a8
Fix compilation error due to missing parameter to
9723a8
grub_printf() when MM_DEBUG is defined.
9723a8
9723a8
Fixes: 64e26162e (calloc: Make sure we always have an overflow-checking calloc() available)
9723a8
9723a8
Signed-off-by: Marco A Benatto <mbenatto@redhat.com>
9723a8
Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
9723a8
---
9723a8
 grub-core/kern/mm.c | 2 +-
9723a8
 1 file changed, 1 insertion(+), 1 deletion(-)
9723a8
9723a8
diff --git a/grub-core/kern/mm.c b/grub-core/kern/mm.c
b71686
index 80d0720d0..d8c837757 100644
9723a8
--- a/grub-core/kern/mm.c
9723a8
+++ b/grub-core/kern/mm.c
9723a8
@@ -594,7 +594,7 @@ grub_debug_calloc (const char *file, int line, grub_size_t nmemb, grub_size_t si
9723a8
 
9723a8
   if (grub_mm_debug)
9723a8
     grub_printf ("%s:%d: calloc (0x%" PRIxGRUB_SIZE ", 0x%" PRIxGRUB_SIZE ") = ",
9723a8
-		 file, line, size);
9723a8
+		 file, line, nmemb, size);
9723a8
   ptr = grub_calloc (nmemb, size);
9723a8
   if (grub_mm_debug)
9723a8
     grub_printf ("%p\n", ptr);