summaryrefslogtreecommitdiff
path: root/tools/source/memtools/mempool.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'tools/source/memtools/mempool.cxx')
-rw-r--r--tools/source/memtools/mempool.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/source/memtools/mempool.cxx b/tools/source/memtools/mempool.cxx
index d8e18e3d37b0..7c1c08002b8a 100644
--- a/tools/source/memtools/mempool.cxx
+++ b/tools/source/memtools/mempool.cxx
@@ -35,7 +35,8 @@ FixedMemPool::FixedMemPool(char const * pTypeName, sal_uInt16 nTypeSize)
FixedMemPool::~FixedMemPool()
{
SAL_INFO("tools.memtools","FixedMemPool::dtor(\"" << m_pTypeName << "\"): " << m_pImpl);
- rtl_cache_destroy (reinterpret_cast<rtl_cache_type*>(m_pImpl)), m_pImpl = nullptr;
+ rtl_cache_destroy (reinterpret_cast<rtl_cache_type*>(m_pImpl));
+ m_pImpl = nullptr;
}
void* FixedMemPool::Alloc()