Fix ubsan with passing nullptr to qsort()

This commit is contained in:
Behdad Esfahbod 2018-12-30 01:52:19 -05:00
parent 357a0a7ad3
commit 89949ed28d
1 changed files with 6 additions and 3 deletions

View File

@ -119,19 +119,22 @@ struct hb_array_t :
hb_sorted_array_t<Type> qsort (int (*cmp_)(const void*, const void*))
{
::qsort (arrayZ, length, this->item_size, cmp_);
if (likely (length))
::qsort (arrayZ, length, this->item_size, cmp_);
return hb_sorted_array_t<Type> (*this);
}
hb_sorted_array_t<Type> qsort ()
{
::qsort (arrayZ, length, this->item_size, Type::cmp);
if (likely (length))
::qsort (arrayZ, length, this->item_size, Type::cmp);
return hb_sorted_array_t<Type> (*this);
}
void qsort (unsigned int start, unsigned int end)
{
end = MIN (end, length);
assert (start <= end);
::qsort (arrayZ + start, end - start, this->item_size, Type::cmp);
if (likely (start < end))
::qsort (arrayZ + start, end - start, this->item_size, Type::cmp);
}
/*