Blame SOURCES/0290-font-Assign-null_font-to-glyphs-in-ascii_font_glyph.patch

b35c50
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
b35c50
From: Zhang Boyang <zhangboyang.id@gmail.com>
b35c50
Date: Fri, 28 Oct 2022 17:29:16 +0800
b35c50
Subject: [PATCH] font: Assign null_font to glyphs in ascii_font_glyph[]
b35c50
b35c50
The calculations in blit_comb() need information from glyph's font, e.g.
b35c50
grub_font_get_xheight(main_glyph->font). However, main_glyph->font is
b35c50
NULL if main_glyph comes from ascii_font_glyph[]. Therefore
b35c50
grub_font_get_*() crashes because of NULL pointer.
b35c50
b35c50
There is already a solution, the null_font. So, assign it to those glyphs
b35c50
in ascii_font_glyph[].
b35c50
b35c50
Reported-by: Daniel Axtens <dja@axtens.net>
b35c50
Signed-off-by: Zhang Boyang <zhangboyang.id@gmail.com>
b35c50
Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
b35c50
(cherry picked from commit dd539d695482069d28b40f2d3821f710cdcf6ee6)
b35c50
---
b35c50
 grub-core/font/font.c | 2 +-
b35c50
 1 file changed, 1 insertion(+), 1 deletion(-)
b35c50
b35c50
diff --git a/grub-core/font/font.c b/grub-core/font/font.c
b35c50
index 29fbb94294..e6616e610c 100644
b35c50
--- a/grub-core/font/font.c
b35c50
+++ b/grub-core/font/font.c
b35c50
@@ -137,7 +137,7 @@ ascii_glyph_lookup (grub_uint32_t code)
b35c50
 	  ascii_font_glyph[current]->offset_x = 0;
b35c50
 	  ascii_font_glyph[current]->offset_y = -2;
b35c50
 	  ascii_font_glyph[current]->device_width = 8;
b35c50
-	  ascii_font_glyph[current]->font = NULL;
b35c50
+	  ascii_font_glyph[current]->font = &null_font;
b35c50
 
b35c50
 	  grub_memcpy (ascii_font_glyph[current]->bitmap,
b35c50
 		       &ascii_bitmaps[current * ASCII_BITMAP_SIZE],