From 3e91f337a5678da40a61fb950e44543d32781adc Mon Sep 17 00:00:00 2001 From: Kimplul Date: Tue, 18 Mar 2025 19:16:50 +0200 Subject: fix vector reserve --- include/conts/vec.h | 9 ++++++--- 1 file 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) -- cgit v1.2.3