Index: libcfa/src/collections/vector.hfa
===================================================================
--- libcfa/src/collections/vector.hfa	(revision 1f6623cc5ccfb6fc3081e1e36443d8845caab60a)
+++ libcfa/src/collections/vector.hfa	(revision dfe8f78a844dd8c5287613871c2c1bde349f6131)
@@ -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);
 }
 
