From 7d512f21913b3ed7dee2a025fdc1dea77a08d83b Mon Sep 17 00:00:00 2001 From: peterbell10 Date: Tue, 19 Feb 2019 10:22:08 +0000 Subject: Limit the size of cListAllocationPool's free list --- src/ChunkDataCallback.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ChunkDataCallback.h') diff --git a/src/ChunkDataCallback.h b/src/ChunkDataCallback.h index ec8e1180f..c26ec5beb 100644 --- a/src/ChunkDataCallback.h +++ b/src/ChunkDataCallback.h @@ -115,7 +115,7 @@ public: }; cChunkDataCopyCollector(): - m_Pool(cpp14::make_unique(), cChunkData::NumSections), // Keep 1 chunk worth of reserve + m_Pool(cpp14::make_unique(), 0, cChunkData::NumSections), // Keep 1 chunk worth of reserve m_Data(m_Pool) { } -- cgit v1.2.3