[array] Use hb_memcmp instead of memcmp
Fixes ubsan error.
This commit is contained in:
parent
55804e8d68
commit
975a5f9194
|
@ -416,13 +416,13 @@ template <>
|
||||||
inline bool hb_array_t<const char>::operator == (const hb_array_t<const char> &o) const
|
inline bool hb_array_t<const char>::operator == (const hb_array_t<const char> &o) const
|
||||||
{
|
{
|
||||||
if (o.length != this->length) return false;
|
if (o.length != this->length) return false;
|
||||||
return 0 == memcmp (arrayZ, o.arrayZ, length);
|
return 0 == hb_memcmp (arrayZ, o.arrayZ, length);
|
||||||
}
|
}
|
||||||
template <>
|
template <>
|
||||||
inline bool hb_array_t<const unsigned char>::operator == (const hb_array_t<const unsigned char> &o) const
|
inline bool hb_array_t<const unsigned char>::operator == (const hb_array_t<const unsigned char> &o) const
|
||||||
{
|
{
|
||||||
if (o.length != this->length) return false;
|
if (o.length != this->length) return false;
|
||||||
return 0 == memcmp (arrayZ, o.arrayZ, length);
|
return 0 == hb_memcmp (arrayZ, o.arrayZ, length);
|
||||||
}
|
}
|
||||||
|
|
||||||
template <>
|
template <>
|
||||||
|
|
Loading…
Reference in New Issue