mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-06 05:55:06 +00:00
[subset] avoid calling clear on null pool set.
This commit is contained in:
parent
9ed5f04a70
commit
752e393ad2
2 changed files with 2 additions and 1 deletions
|
@ -116,7 +116,8 @@ struct hb_closure_context_t :
|
|||
}
|
||||
}
|
||||
|
||||
done_lookups_glyph_set->get (lookup_index)->clear ();
|
||||
if (done_lookups_glyph_set->get (lookup_index)->get_population ())
|
||||
done_lookups_glyph_set->get (lookup_index)->clear ();
|
||||
}
|
||||
|
||||
hb_set_t *covered_glyph_set = done_lookups_glyph_set->get (lookup_index);
|
||||
|
|
Binary file not shown.
Loading…
Add table
Reference in a new issue