mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 13:35:06 +00:00
Try to fix warning on 32bit system
Hopefully fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=69281
This commit is contained in:
parent
9456f6bdfa
commit
42bf7ce7c9
1 changed files with 1 additions and 1 deletions
|
@ -152,7 +152,7 @@ VarComponent::get_path_at (hb_font_t *font,
|
|||
hb_barrier (); \
|
||||
auto &varint = * (const HBUINT32VAR *) record; \
|
||||
unsigned size = varint.get_size (); \
|
||||
if (unlikely (end - record < size)) return hb_ubytes_t (); \
|
||||
if (unlikely (unsigned (end - record) < size)) return hb_ubytes_t (); \
|
||||
name = (uint32_t) varint; \
|
||||
record += size; \
|
||||
} HB_STMT_END
|
||||
|
|
Loading…
Add table
Reference in a new issue