diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-06-02 20:47:47 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-06-02 20:47:47 (GMT) |
commit | 8f6c1d3baaef242ffc70ec01017059cc53aed39d (patch) | |
tree | 687dc849795fc219bcd419d3413e00dacc7e246b /Source/cmCTest.cxx | |
parent | 2ab429b9bf687c12e302f11d81276d5c7c82c74c (diff) | |
download | CMake-8f6c1d3baaef242ffc70ec01017059cc53aed39d.zip CMake-8f6c1d3baaef242ffc70ec01017059cc53aed39d.tar.gz CMake-8f6c1d3baaef242ffc70ec01017059cc53aed39d.tar.bz2 |
BUG: Fix the order of things to make submit handler not crash when proxies are set
Diffstat (limited to 'Source/cmCTest.cxx')
-rw-r--r-- | Source/cmCTest.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx index 740a7d6..942f770 100644 --- a/Source/cmCTest.cxx +++ b/Source/cmCTest.cxx @@ -219,7 +219,10 @@ cmCTest::cmCTest() m_TimeOut = 0; m_CompressXMLFiles = false; m_CTestConfigFile = ""; + m_OutputLogFile = 0; + m_OutputLogFileLastTag = -1; m_SuppressUpdatingCTestConfiguration = false; + int cc; for ( cc=0; cc < cmCTest::LAST_TEST; cc ++ ) { @@ -241,8 +244,6 @@ cmCTest::cmCTest() { it->second->SetCTestInstance(this); } - m_OutputLogFile = 0; - m_OutputLogFileLastTag = -1; } cmCTest::~cmCTest() |