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