mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
[SCSI] ibmmca: fix buffer overflow
Allows i == IM_MAX_HOSTS, which is out of range. Signed-off-by: Roel Kluin <roel.kluin@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: James Bottomley <James.Bottomley@suse.de>
This commit is contained in:
parent
4a02462af1
commit
340f052001
1 changed files with 1 additions and 1 deletions
|
@ -2336,7 +2336,7 @@ static int option_setup(char *str)
|
|||
char *cur = str;
|
||||
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);
|
||||
if ((cur = strchr(cur, ',')) != NULL)
|
||||
cur++;
|
||||
|
|
Loading…
Reference in a new issue