diff options
-rw-r--r-- | include/conts/vec.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/include/conts/vec.h b/include/conts/vec.h index a11927f..224d7aa 100644 --- a/include/conts/vec.h +++ b/include/conts/vec.h @@ -100,10 +100,13 @@ static inline void VEC(reserve)(struct VEC_STRUCT *v, size_t n) return; v->n = n; - if (v->s < v->n) { + if (v->s >= v->n) + return; + + while (v->s < v->n) v->s *= 2; - v->buf = realloc(v->buf, v->s * sizeof(VEC_TYPE)); - } + + v->buf = realloc(v->buf, v->s * sizeof(VEC_TYPE)); } static inline void VEC(shrink)(struct VEC_STRUCT *v, size_t n) |