Minor
This commit is contained in:
parent
570d523761
commit
af274507c4
|
@ -425,14 +425,13 @@ struct hb_prealloced_array_t
|
|||
return &array[len - 1];
|
||||
}
|
||||
|
||||
// Alloc enouch for size if size < allocated. Don't adjust len.
|
||||
/* Allocate for size but don't adjust len. */
|
||||
inline bool alloc(unsigned int size)
|
||||
{
|
||||
if (likely (size <= allocated))
|
||||
{
|
||||
return true;
|
||||
}
|
||||
/* Need to reallocate */
|
||||
|
||||
/* Reallocate */
|
||||
|
||||
unsigned int new_allocated = allocated;
|
||||
while (size >= new_allocated)
|
||||
|
@ -462,10 +461,8 @@ struct hb_prealloced_array_t
|
|||
|
||||
inline bool resize (unsigned int size)
|
||||
{
|
||||
if (!alloc(size))
|
||||
{
|
||||
if (!alloc (size))
|
||||
return false;
|
||||
}
|
||||
|
||||
len = size;
|
||||
return true;
|
||||
|
|
Loading…
Reference in New Issue