Mercurial > hg > svcore
diff transform/TransformFactory.cpp @ 976:45e95de8b11d
Fix some (probably benign) uninitialised members (from coverity scan)
author | Chris Cannam |
---|---|
date | Wed, 03 Sep 2014 11:27:23 +0100 |
parents | 06579b8ffb7b |
children | b14064bd1f97 |
line wrap: on
line diff
--- a/transform/TransformFactory.cpp Wed Sep 03 11:26:21 2014 +0100 +++ b/transform/TransformFactory.cpp Wed Sep 03 11:27:23 2014 +0100 @@ -60,7 +60,8 @@ m_transformsPopulated(false), m_uninstalledTransformsPopulated(false), m_thread(0), - m_exiting(false) + m_exiting(false), + m_populatingSlowly(false) { }