Browse Source

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.
pull/42/head
Rolf Eike Beer 12 years ago
committed by Brad King
parent
commit
ce441fac07
  1. 1
      Source/cmCoreTryCompile.cxx

1
Source/cmCoreTryCompile.cxx

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

Loading…
Cancel
Save