Index: libcfa/src/collections/vector.hfa
===================================================================
--- libcfa/src/collections/vector.hfa	(revision a22e8b4b3788f7c22178b10d7ea34d5be5c86365)
+++ libcfa/src/collections/vector.hfa	(revision 985ff5f41da6231bbc7c38f716ebe95925c43cfa)
@@ -97,5 +97,5 @@
 static inline void reserve(vector(T, allocator_t)* this, size_t size)
 {
-	realloc_storage(&this->storage, this->size+1);
+	realloc_storage(&this->storage, size);
 }
 
