Fix a memory leak.

This commit is contained in:
Bill Hoffman 2011-06-06 16:41:17 -04:00
parent 4b652ad0d9
commit dd52fc309d
1 changed files with 1 additions and 0 deletions

View File

@ -1936,6 +1936,7 @@ void cmCTestTestHandler::SetTestsToRunInformation(const char* in)
fin.getline(buff, filelen);
buff[fin.gcount()] = 0;
this->TestsToRunString = buff;
delete [] buff;
}
}