From c1ed1866a4d41e113573a6eaf521912244e4642d Mon Sep 17 00:00:00 2001 From: rubidium Date: Thu, 30 Oct 2008 12:32:32 +0000 Subject: (svn r14547) -Fix: order pool seemed to look full when it was not as it only checked whether it was possible to allocate a new block of pool items instead of checking for free pool items. --- src/oldpool.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/oldpool.h') diff --git a/src/oldpool.h b/src/oldpool.h index 457e5327d..8396e5de0 100644 --- a/src/oldpool.h +++ b/src/oldpool.h @@ -311,7 +311,7 @@ protected: } public: - static bool CanAllocateItem(); + static bool CanAllocateItem(uint count = 1); }; -- cgit v1.2.3-54-g00ecf