From 2199f8ef2ddcd05ed578d0cc92b58069fac2de6c Mon Sep 17 00:00:00 2001 From: Russell Taylor <taylorrj@ornl.gov> Date: Wed, 15 Aug 2012 10:34:30 -0400 Subject: [PATCH] Re #5738. Clear memory leak. --- Code/Mantid/Framework/DataHandling/src/Load.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Code/Mantid/Framework/DataHandling/src/Load.cpp b/Code/Mantid/Framework/DataHandling/src/Load.cpp index c04c760d1ec..0bb501b7fb8 100644 --- a/Code/Mantid/Framework/DataHandling/src/Load.cpp +++ b/Code/Mantid/Framework/DataHandling/src/Load.cpp @@ -336,7 +336,7 @@ namespace Mantid // Wipe all properties except the Load native ones if( m_baseProps.find(name) == m_baseProps.end() ) { - this->removeProperty(name, false); + this->removeProperty(name); } } -- GitLab