BUG: fix use beyond end of array

This commit is contained in:
Bill Hoffman 2001-05-09 09:52:21 -04:00
parent cb6bc6f0aa
commit df5059949d
1 changed files with 5 additions and 3 deletions

View File

@ -51,11 +51,13 @@ bool cmConfigureFileCommand::Invoke(std::vector<std::string>& args)
m_InputFile = args[0];
m_OuputFile = args[1];
m_CopyOnly = false;
if(args[2] == "COPYONLY")
if(args.size() >= 3)
{
m_CopyOnly = true;
if(args[2] == "COPYONLY")
{
m_CopyOnly = true;
}
}
return true;
}