[vector] Whitespace
This commit is contained in:
parent
fb07d1a3ce
commit
1ab3c3ed1b
|
@ -683,15 +683,17 @@ struct hb_vector_t
|
||||||
|
|
||||||
Type *new_array = nullptr;
|
Type *new_array = nullptr;
|
||||||
|
|
||||||
if (arrayZ == static_array) {
|
if (arrayZ == static_array)
|
||||||
|
{
|
||||||
new_array = (Type *) calloc (new_allocated, sizeof (Type));
|
new_array = (Type *) calloc (new_allocated, sizeof (Type));
|
||||||
if (new_array)
|
if (new_array)
|
||||||
memcpy (new_array, arrayZ, len * sizeof (Type));
|
memcpy (new_array, arrayZ, len * sizeof (Type));
|
||||||
} else {
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
bool overflows = (new_allocated < allocated) || _hb_unsigned_int_mul_overflows (new_allocated, sizeof (Type));
|
bool overflows = (new_allocated < allocated) || _hb_unsigned_int_mul_overflows (new_allocated, sizeof (Type));
|
||||||
if (likely (!overflows)) {
|
if (likely (!overflows))
|
||||||
new_array = (Type *) realloc (arrayZ, new_allocated * sizeof (Type));
|
new_array = (Type *) realloc (arrayZ, new_allocated * sizeof (Type));
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (unlikely (!new_array))
|
if (unlikely (!new_array))
|
||||||
|
|
Loading…
Reference in New Issue