src/oldpool.cpp
changeset 5860 7fdc9b423ba1
parent 5838 9c3129cb019b
child 6303 84c215fc8eb8
--- a/src/oldpool.cpp	Thu Jan 11 15:30:35 2007 +0000
+++ b/src/oldpool.cpp	Thu Jan 11 17:29:39 2007 +0000
@@ -50,11 +50,11 @@
 	DEBUG(misc, 4, "[Pool] (%s) increasing size of pool to %d items (%d bytes)", pool->name, pool->total_items, pool->total_items * pool->item_size);
 
 	/* Increase the poolsize */
-	ReallocT(&pool->blocks, pool->current_blocks + 1);
+	pool->blocks = ReallocT(pool->blocks, pool->current_blocks + 1);
 	if (pool->blocks == NULL) error("Pool: (%s) could not allocate memory for blocks", pool->name);
 
 	/* Allocate memory to the new block item */
-	MallocT(&pool->blocks[pool->current_blocks], pool->item_size * (1 << pool->block_size_bits));
+	pool->blocks[pool->current_blocks] = MallocT<byte>(pool->item_size * (1 << pool->block_size_bits));
 	if (pool->blocks[pool->current_blocks] == NULL)
 		error("Pool: (%s) could not allocate memory for blocks", pool->name);