Blame SOURCES/0565-font-Remove-grub_font_dup_glyph.patch

a9bbe0
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
a9bbe0
From: Zhang Boyang <zhangboyang.id@gmail.com>
a9bbe0
Date: Fri, 5 Aug 2022 02:13:29 +0800
a9bbe0
Subject: [PATCH] font: Remove grub_font_dup_glyph()
a9bbe0
a9bbe0
Remove grub_font_dup_glyph() since nobody is using it since 2013, and
a9bbe0
I'm too lazy to fix the integer overflow problem in it.
a9bbe0
a9bbe0
Signed-off-by: Zhang Boyang <zhangboyang.id@gmail.com>
a9bbe0
Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
a9bbe0
(cherry picked from commit 25ad31c19c331aaa2dbd9bd2b2e2655de5766a9d)
a9bbe0
(cherry picked from commit ad950e1e033318bb50222ed268a6dcfb97389035)
a9bbe0
(cherry picked from commit 71644fccc1d43309f0a379dcfe9341ec3bd9657d)
a9bbe0
---
a9bbe0
 grub-core/font/font.c | 14 --------------
a9bbe0
 1 file changed, 14 deletions(-)
a9bbe0
a9bbe0
diff --git a/grub-core/font/font.c b/grub-core/font/font.c
a9bbe0
index 129aaa3838..347e9dfa29 100644
a9bbe0
--- a/grub-core/font/font.c
a9bbe0
+++ b/grub-core/font/font.c
a9bbe0
@@ -1055,20 +1055,6 @@ grub_font_get_glyph_with_fallback (grub_font_t font, grub_uint32_t code)
a9bbe0
   return best_glyph;
a9bbe0
 }
a9bbe0
 
a9bbe0
-#if 0
a9bbe0
-static struct grub_font_glyph *
a9bbe0
-grub_font_dup_glyph (struct grub_font_glyph *glyph)
a9bbe0
-{
a9bbe0
-  static struct grub_font_glyph *ret;
a9bbe0
-  ret = grub_malloc (sizeof (*ret) + (glyph->width * glyph->height + 7) / 8);
a9bbe0
-  if (!ret)
a9bbe0
-    return NULL;
a9bbe0
-  grub_memcpy (ret, glyph, sizeof (*ret)
a9bbe0
-	       + (glyph->width * glyph->height + 7) / 8);
a9bbe0
-  return ret;
a9bbe0
-}
a9bbe0
-#endif
a9bbe0
-
a9bbe0
 /* FIXME: suboptimal.  */
a9bbe0
 static void
a9bbe0
 grub_font_blit_glyph (struct grub_font_glyph *target,