Hello there, [bind.c:2238]: (style) Array index 'j' is used before limits check.
Source code is
for (j = 0; invokers[j] && j < 5; j++)
Suggest new code
for (j = 0; (j < 5) && (invokers[j] != NULL); j++)
Regards
David Binderman
