summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-10-06 13:41:23 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2014-10-06 13:41:23 (GMT)
commit3f9191932262f2279a7d25bf0dbb2fc224bd27cb (patch)
treed6a56a8e9746f73fe36620b7c60ad3473585cb65 /Source
parentc74d2ddfa47792326c6d8b74df8816e27ad87e4c (diff)
parent1c838addf590f8ae67e43f0eb02a6e02b46264f3 (diff)
downloadCMake-3f9191932262f2279a7d25bf0dbb2fc224bd27cb.zip
CMake-3f9191932262f2279a7d25bf0dbb2fc224bd27cb.tar.gz
CMake-3f9191932262f2279a7d25bf0dbb2fc224bd27cb.tar.bz2
Merge topic 'fix-cobertura-parsing'
1c838add cmParseCoberturaCoverage: Initialize CurFileName to empty string
Diffstat (limited to 'Source')
-rw-r--r--Source/CTest/cmParseCoberturaCoverage.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/CTest/cmParseCoberturaCoverage.cxx b/Source/CTest/cmParseCoberturaCoverage.cxx
index 6b98056..0742be1 100644
--- a/Source/CTest/cmParseCoberturaCoverage.cxx
+++ b/Source/CTest/cmParseCoberturaCoverage.cxx
@@ -71,6 +71,7 @@ protected:
cmCTestLog(this->CTest, HANDLER_VERBOSE_OUTPUT, "Reading file: "
<< atts[tagCount+1]<< std::endl);
std::string filename = atts[tagCount+1];
+ this->CurFileName = "";
for(size_t i=0;i < FilePaths.size();i++)
{
finalpath = FilePaths[i] + "/" + filename;