summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2025-03-18 19:16:50 +0200
committerKimplul <kimi.h.kuparinen@gmail.com>2025-03-18 19:16:50 +0200
commit3e91f337a5678da40a61fb950e44543d32781adc (patch)
tree6c559a66f634474bf7054fc791ef39e0a1f4c953
parent2d63e807ac56cad97bf32bec0e8372dc2bed240d (diff)
downloadconts-3e91f337a5678da40a61fb950e44543d32781adc.tar.gz
conts-3e91f337a5678da40a61fb950e44543d32781adc.zip
fix vector reserve
-rw-r--r--include/conts/vec.h9
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)