mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 05:25:05 +00:00
[subset] Fix fuzzer crash.
https://oss-fuzz.com/testcase-detail/6608005089853440
This commit is contained in:
parent
ff326fbe8f
commit
f3b4d35f36
2 changed files with 5 additions and 1 deletions
|
@ -323,6 +323,8 @@ struct hb_serialize_context_t
|
|||
{
|
||||
object_t *obj = current;
|
||||
if (unlikely (!obj)) return;
|
||||
// Allow cleanup when we've error'd out on int overflows which don't compromise
|
||||
// the serializer state.
|
||||
if (unlikely (in_error() && !only_overflow ())) return;
|
||||
|
||||
current = current->next;
|
||||
|
@ -340,7 +342,9 @@ struct hb_serialize_context_t
|
|||
{
|
||||
object_t *obj = current;
|
||||
if (unlikely (!obj)) return 0;
|
||||
if (unlikely (in_error())) return 0;
|
||||
// Allow cleanup when we've error'd out on int overflows which don't compromise
|
||||
// the serializer state.
|
||||
if (unlikely (in_error() && !only_overflow ())) return 0;
|
||||
|
||||
current = current->next;
|
||||
obj->tail = head;
|
||||
|
|
Binary file not shown.
Loading…
Add table
Reference in a new issue