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