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