mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-08 23:00:07 -06:00
cmake: Validate -E cmake_automoc argument count (#14545)
Do not access an argument index not known to exist.
This commit is contained in:
@@ -1734,7 +1734,7 @@ int cmake::ExecuteCMakeCommand(std::vector<std::string>& args)
|
||||
{
|
||||
return cmake::ExecuteEchoColor(args);
|
||||
}
|
||||
else if (args[1] == "cmake_automoc")
|
||||
else if (args[1] == "cmake_automoc" && args.size() >= 4)
|
||||
{
|
||||
cmQtAutomoc automoc;
|
||||
const char *config = args[3].empty() ? 0 : args[3].c_str();
|
||||
|
||||
Reference in New Issue
Block a user