Commit 3079c21b authored by Roel Kluin's avatar Roel Kluin Committed by James Toy

Allows i == IM_MAX_HOSTS, which is out of range.

Signed-off-by: default avatarRoel Kluin <roel.kluin@gmail.com>
Cc: Michael Lang <langa2@kph.uni-mainz.de>
Cc: James E.J. Bottomley <James.Bottomley@HansenPartnership.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
parent ef3fefd9
...@@ -2335,7 +2335,7 @@ static int option_setup(char *str) ...@@ -2335,7 +2335,7 @@ static int option_setup(char *str)
char *cur = str; char *cur = str;
int i = 1; int i = 1;
while (cur && isdigit(*cur) && i <= IM_MAX_HOSTS) { while (cur && isdigit(*cur) && i < IM_MAX_HOSTS) {
ints[i++] = simple_strtoul(cur, NULL, 0); ints[i++] = simple_strtoul(cur, NULL, 0);
if ((cur = strchr(cur, ',')) != NULL) if ((cur = strchr(cur, ',')) != NULL)
cur++; cur++;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment