RE: bash-4.3 bug report
hen* sanity check it's value. Regards David Binderman
bash-4.3 bug report
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
bash-4.2: poor order of conditionals
You might be better off with while (i < file_size && buffer[i] != '\n') i++; Regards David Binderman