diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-03-18 19:16:50 +0200 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-03-18 19:16:50 +0200 |
commit | 3e91f337a5678da40a61fb950e44543d32781adc (patch) | |
tree | 6c559a66f634474bf7054fc791ef39e0a1f4c953 | |
parent | 2d63e807ac56cad97bf32bec0e8372dc2bed240d (diff) | |
download | conts-3e91f337a5678da40a61fb950e44543d32781adc.tar.gz conts-3e91f337a5678da40a61fb950e44543d32781adc.zip |
fix vector reserve
-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) |