Browse Source

BUG: ParseFile should return false if there was a parse error.

pull/1/head
Brad King 18 years ago
parent
commit
9b0df0d692
  1. 4
      Source/cmListFileCache.cxx

4
Source/cmListFileCache.cxx

@ -139,6 +139,10 @@ bool cmListFile::ParseFile(const char* filename, bool requireProjectCommand)
this->Functions.insert(this->Functions.begin(),project);
}
}
if(parseError)
{
return false;
}
return true;
}

Loading…
Cancel
Save