mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 13:35:06 +00:00
[VARC] Check for an OOM
Otherwise we can infinitely recurse. Fixes https://oss-fuzz.com/testcase-detail/6221534946459648
This commit is contained in:
parent
9f8f81403d
commit
88e9cd3fd3
1 changed files with 1 additions and 1 deletions
|
@ -124,7 +124,7 @@ struct VARC
|
|||
return true;
|
||||
(*edges_left)--;
|
||||
|
||||
if (visited->has (glyph))
|
||||
if (visited->has (glyph) || visited->in_error ())
|
||||
return true;
|
||||
visited->add (glyph);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue