add missing return

This commit is contained in:
Rod Sheeter 2018-02-09 17:14:37 -08:00
parent 0089443756
commit 4816064c0e
1 changed files with 3 additions and 1 deletions

View File

@ -448,7 +448,9 @@ struct hb_prealloced_array_t
return false;
array = new_array;
allocated = new_allocated;
allocated = new_allocated;
return true;
}
inline bool resize (unsigned int size)