mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-06 05:55:06 +00:00
fix oss-fuzz issue 14345
This commit is contained in:
parent
63a2108480
commit
ba0386060d
2 changed files with 2 additions and 1 deletions
|
@ -110,7 +110,8 @@ struct Encoding1 {
|
|||
{
|
||||
if (glyph <= ranges[i].nLeft)
|
||||
{
|
||||
return (hb_codepoint_t)ranges[i].first + glyph;
|
||||
hb_codepoint_t code = (hb_codepoint_t)ranges[i].first + glyph;
|
||||
return (likely (code < 0x100)? code: CFF_UNDEF_CODE);
|
||||
}
|
||||
glyph -= (ranges[i].nLeft + 1);
|
||||
}
|
||||
|
|
Binary file not shown.
Loading…
Add table
Reference in a new issue