eurephiadm.c:253: possible array index out of range ?
Brought to you by:
dazo
eurephia-1.1.0/eurephiadm/eurephiadm.c:253]: (style) Array index 'dbargc' is used before limits check.
Source code is
while( (dbargv[dbargc] != NULL) && (dbargc <= MAX_ARGUMENTS) ) {
dbargv[++dbargc] = strtok(NULL, delims);
}
but
const char *dbargv[MAX_ARGUMENTS];
I've just pushed out an updated master and release/1.1 branch which fixes this issue.