mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 13:35:06 +00:00
Try fix fuzzer build on 32bit
This commit is contained in:
parent
cef1eafb77
commit
2266d2582b
1 changed files with 2 additions and 2 deletions
|
@ -165,7 +165,7 @@ VarComponent::get_path_at (hb_font_t *font,
|
|||
hb_codepoint_t gid = 0;
|
||||
if (flags & (unsigned) flags_t::GID_IS_24BIT)
|
||||
{
|
||||
if (unlikely (end - record < HBGlyphID24::static_size))
|
||||
if (unlikely (unsigned (end - record) < HBGlyphID24::static_size))
|
||||
return hb_ubytes_t ();
|
||||
hb_barrier ();
|
||||
gid = * (const HBGlyphID24 *) record;
|
||||
|
@ -173,7 +173,7 @@ VarComponent::get_path_at (hb_font_t *font,
|
|||
}
|
||||
else
|
||||
{
|
||||
if (unlikely (end - record < HBGlyphID16::static_size))
|
||||
if (unlikely (unsigned (end - record) < HBGlyphID16::static_size))
|
||||
return hb_ubytes_t ();
|
||||
hb_barrier ();
|
||||
gid = * (const HBGlyphID16 *) record;
|
||||
|
|
Loading…
Add table
Reference in a new issue