diff options
author | Caolán McNamara <caolanm@redhat.com> | 2010-12-13 12:48:47 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2010-12-13 12:48:47 +0000 |
commit | 9889c4bd6ae62ce449aa52e73b63f7345996004e (patch) | |
tree | d73e4d62190d178a775ce17f0e29443a3bf5b99a /configmgr | |
parent | 6ac218a85e195081460558b8977bf58046dd984a (diff) |
valgrind: don't leave an evil thread running after main is completed
Diffstat (limited to 'configmgr')
-rw-r--r-- | configmgr/source/components.cxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configmgr/source/components.cxx b/configmgr/source/components.cxx index e6cfb1031439..44c2d32a924e 100644 --- a/configmgr/source/components.cxx +++ b/configmgr/source/components.cxx @@ -595,7 +595,10 @@ Components::Components( RTL_LOGFILE_TRACE_AUTHOR("configmgr", "sb", "end parsing"); } -Components::~Components() {} +Components::~Components() +{ + flushModifications(); +} void Components::parseFileLeniently( FileParser * parseFile, rtl::OUString const & url, int layer, Data & data, |