mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 05:25:05 +00:00
[HVAC] Minor fix get_size()
This commit is contained in:
parent
0fd3c5f7ca
commit
1cf7d9d0b0
1 changed files with 2 additions and 2 deletions
|
@ -41,7 +41,7 @@ struct GlyphVariationDelta
|
|||
{
|
||||
unsigned get_size (unsigned deltasCount) const
|
||||
{
|
||||
return regionIndex.static_size + deltasCount * sizeof (deltasZ) * 2;
|
||||
return regionIndex.static_size + 2 * deltasCount * sizeof (deltasZ[0]);
|
||||
}
|
||||
|
||||
void apply_deltas_to_points (unsigned deltasCount,
|
||||
|
@ -79,7 +79,7 @@ struct GlyphVariationDelta
|
|||
TRACE_SANITIZE (this);
|
||||
return_trace (c->check_struct (this) &&
|
||||
hb_barrier () &&
|
||||
c->check_range (this, get_size (deltasCount)));
|
||||
c->check_array (deltasZ, 2 * deltasCount));
|
||||
}
|
||||
|
||||
protected:
|
||||
|
|
Loading…
Add table
Reference in a new issue