mirror of
https://github.com/reactos/CMake.git
synced 2024-11-28 14:01:21 +00:00
Merge topic 'coverity-generated-tests'
7eddefd
TestDriver.cxx.in: Untrusted array index read.
This commit is contained in:
commit
eff13ebf33
@ -137,6 +137,13 @@ int main(int ac, char *av[])
|
||||
{
|
||||
int result;
|
||||
@CMAKE_TESTDRIVER_BEFORE_TESTMAIN@
|
||||
if (testToRun < 0 || testToRun >= NumTests)
|
||||
{
|
||||
printf(
|
||||
"testToRun was modified by TestDriver code to an invalid value: %3d.\n",
|
||||
testNum);
|
||||
return -1;
|
||||
}
|
||||
result = (*cmakeGeneratedFunctionMapEntries[testToRun].func)(ac, av);
|
||||
@CMAKE_TESTDRIVER_AFTER_TESTMAIN@
|
||||
return result;
|
||||
|
Loading…
Reference in New Issue
Block a user