try_compile: add missing fclose() to recently added error case

In commit 236133e7 (Handle targets in the LINK_LIBRARIES of try_compile,
2013-02-09) an error return case was added without closing the file in
progress.  Add the missing fclose() call.

Spotted by sevenhill.
This commit is contained in:
Rolf Eike Beer 2013-04-16 09:15:35 +02:00 committed by Brad King
parent 201db269b8
commit ce441fac07
1 changed files with 1 additions and 0 deletions

View File

@ -326,6 +326,7 @@ int cmCoreTryCompile::TryCompileCode(std::vector<std::string> const& argv)
{
this->Makefile->IssueMessage(cmake::FATAL_ERROR,
"could not write export file.");
fclose(fout);
return -1;
}
fprintf(fout,