mirror of
https://git.proxmox.com/git/grub2
synced 2025-08-14 02:42:02 +00:00
Fix length miscomputing
This commit is contained in:
parent
f10331edf2
commit
4f501d31ae
@ -343,7 +343,7 @@ grub_serial_putchar (const struct grub_unicode_glyph *c)
|
||||
break;
|
||||
|
||||
default:
|
||||
if ((c->base & 0xC0) == 0xC0)
|
||||
if ((c->base & 0xC0) == 0x80)
|
||||
break;
|
||||
if (xpos >= TEXT_WIDTH)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user