8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 18:43:03 +01:00

Fixed memory stats reporting for classic.

This commit is contained in:
dimitr 2008-04-10 07:21:54 +00:00
parent 0317368199
commit 0b5a1c615b

View File

@ -453,11 +453,7 @@ public:
MemoryPool* createPool()
{
#ifdef SUPERSERVER
MemoryPool* pool = MemoryPool::createPool(dbb_permanent, dbb_memory_stats);
#else
MemoryPool* pool = MemoryPool::createPool(dbb_permanent);
#endif
MemoryPool* const pool = MemoryPool::createPool(dbb_permanent, dbb_memory_stats);
dbb_pools.add(pool);
return pool;
}