Revert "[sanitize] Simplify(?) check_range"

This reverts commit af0b1ef8a7.
This commit is contained in:
Behdad Esfahbod 2023-01-23 18:36:04 -07:00
parent 00cf322e23
commit 6b72a4ddb0
1 changed files with 14 additions and 4 deletions

View File

@ -248,15 +248,25 @@ struct hb_sanitize_context_t :
return likely (ok);
}
template <typename T, typename ...Ts>
template <typename T>
bool check_range (const T *base,
unsigned int a,
unsigned int b,
Ts&... ds) const
unsigned int b) const
{
unsigned m;
return !hb_unsigned_mul_overflows (a, b, &m) &&
this->check_range (base, m, ds...);
this->check_range (base, m);
}
template <typename T>
bool check_range (const T *base,
unsigned int a,
unsigned int b,
unsigned int c) const
{
unsigned m;
return !hb_unsigned_mul_overflows (a, b, &m) &&
this->check_range (base, m, c);
}
template <typename T>