Merge topic 'fix-cobertura-parsing'

1c838add cmParseCoberturaCoverage: Initialize CurFileName to empty string
This commit is contained in:
Brad King 2014-10-06 09:41:23 -04:00 committed by CMake Topic Stage
commit 3f91919322
1 changed files with 1 additions and 0 deletions

View File

@ -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;