mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-06 05:55:06 +00:00
[subset] fix heap buffer overflow found by fuzzer.
This commit is contained in:
parent
ae860db893
commit
5ca353a2d0
3 changed files with 3 additions and 0 deletions
|
@ -2064,6 +2064,9 @@ struct LigatureArray : OffsetListOf<LigatureAttach>
|
|||
unsigned ligature_count = 0;
|
||||
for (hb_codepoint_t gid : coverage)
|
||||
{
|
||||
if (ligature_count >= this->len)
|
||||
break;
|
||||
|
||||
ligature_count++;
|
||||
if (!glyphset.has (gid)) continue;
|
||||
|
||||
|
|
Binary file not shown.
Binary file not shown.
Loading…
Add table
Reference in a new issue