mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 13:35:06 +00:00
[VARC] Sanitize ConditionList
Oops! Fixes https://oss-fuzz.com/testcase-detail/6610112583106560
This commit is contained in:
parent
88e9cd3fd3
commit
e8049ae9a8
2 changed files with 10 additions and 0 deletions
|
@ -168,6 +168,7 @@ struct VARC
|
|||
version.major == 1 &&
|
||||
coverage.sanitize (c, this) &&
|
||||
varStore.sanitize (c, this) &&
|
||||
conditionList.sanitize (c, this) &&
|
||||
axisIndicesList.sanitize (c, this) &&
|
||||
glyphRecords.sanitize (c, this));
|
||||
}
|
||||
|
|
|
@ -4188,7 +4188,16 @@ struct ConditionList
|
|||
const Condition& operator[] (unsigned i) const
|
||||
{ return this+conditions[i]; }
|
||||
|
||||
bool sanitize (hb_sanitize_context_t *c) const
|
||||
{
|
||||
TRACE_SANITIZE (this);
|
||||
return_trace (conditions.sanitize (c, this));
|
||||
}
|
||||
|
||||
protected:
|
||||
Array32OfOffset32To<Condition> conditions;
|
||||
public:
|
||||
DEFINE_SIZE_ARRAY (4, conditions);
|
||||
};
|
||||
|
||||
struct ConditionSet
|
||||
|
|
Loading…
Add table
Reference in a new issue