diff options
author | Brad King <brad.king@kitware.com> | 2005-11-17 20:44:43 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2005-11-17 20:44:43 (GMT) |
commit | 0df3c162fba0233030674f76162fb0131dbddcc5 (patch) | |
tree | e00e39d6b240dd9260b2479f714168c954dd92d1 /Source/cmCTest.cxx | |
parent | 70b4e1051e04be892c86aa3ff729d63ccf1f7771 (diff) | |
download | CMake-0df3c162fba0233030674f76162fb0131dbddcc5.zip CMake-0df3c162fba0233030674f76162fb0131dbddcc5.tar.gz CMake-0df3c162fba0233030674f76162fb0131dbddcc5.tar.bz2 |
BUG: Do not dereference an end iterator.
Diffstat (limited to 'Source/cmCTest.cxx')
-rw-r--r-- | Source/cmCTest.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx index e9e84b5..1e079b9 100644 --- a/Source/cmCTest.cxx +++ b/Source/cmCTest.cxx @@ -1070,7 +1070,7 @@ int cmCTest::RunTest(std::vector<const char*> argv, } cmsysProcess_WaitForExit(cp, 0); - if(output) + if(output && tempOutput.begin() != tempOutput.end()) { output->append(&*tempOutput.begin(), tempOutput.size()); } |