SLUDGE: Fix potential buffer overrun

This commit is contained in:
Eugene Sandulenko 2021-05-10 11:25:50 +02:00
parent 8321efe0ed
commit 6dcf0939bf
No known key found for this signature in database
GPG Key ID: 014D387312D34F08

View File

@ -2571,7 +2571,7 @@ BuiltReturn callBuiltIn(int whichFunc, int numParams, LoadedFunction *fun) {
}
const char *getBuiltInName(int num) {
if (num > NUM_FUNCS)
if (num >= NUM_FUNCS)
error("getBuiltInName: incorrect builtin number. %d > %d", num, NUM_FUNCS);
return builtInFunctionArray[num].name;