[vector] Better test

This commit is contained in:
Behdad Esfahbod 2023-01-04 11:53:49 -07:00
parent 45fc919a10
commit 3e471bbc08
1 changed files with 1 additions and 1 deletions

View File

@ -391,7 +391,7 @@ struct hb_vector_t
if (unlikely (new_allocated && !new_array))
{
if (exact and new_allocated == length)
if (new_allocated <= (unsigned) allocated)
return true; // shrinking failed; it's okay; happens in our fuzzer
allocated = -1;