Commit 5360bbb3 authored by Roel Kluin's avatar Roel Kluin Committed by james toy

This allows i == MAX_INT_PARAM, which is out of range for ints[]

Found with Parfait, http://research.sun.com/projects/parfait/Signed-off-by: default avatarRoel Kluin <roel.kluin@gmail.com>
Cc: Dario Ballabio <ballabio_dario@emc.com>
Cc: James Bottomley <James.Bottomley@HansenPartnership.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
parent 0e0f8cdc
...@@ -1070,7 +1070,7 @@ static int option_setup(char *str) { ...@@ -1070,7 +1070,7 @@ static int option_setup(char *str) {
char *cur = str; char *cur = str;
int i = 1; int i = 1;
while (cur && isdigit(*cur) && i <= MAX_INT_PARAM) { while (cur && isdigit(*cur) && i < MAX_INT_PARAM) {
ints[i++] = simple_strtoul(cur, NULL, 0); ints[i++] = simple_strtoul(cur, NULL, 0);
if ((cur = strchr(cur, ',')) != NULL) cur++; if ((cur = strchr(cur, ',')) != NULL) 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