From 4a4f680741c663437bd1dccadef4182b645db1cf Mon Sep 17 00:00:00 2001 From: Adriano dos Santos Fernandes Date: Sun, 26 Nov 2017 18:34:04 -0200 Subject: [PATCH] Correction - thanks to Dmitry. --- src/jrd/Attachment.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jrd/Attachment.cpp b/src/jrd/Attachment.cpp index 92841ec806..4a9a1da07f 100644 --- a/src/jrd/Attachment.cpp +++ b/src/jrd/Attachment.cpp @@ -112,7 +112,7 @@ void Jrd::Attachment::destroy(Attachment* const attachment) MemoryPool* Jrd::Attachment::createPool() { - MemoryPool* const pool = MemoryPool::createPool(NULL, att_memory_stats); + MemoryPool* const pool = MemoryPool::createPool(att_pool, att_memory_stats); att_pools.add(pool); return pool; }