提交 340f0520 编写于 作者: R Roel Kluin 提交者: James Bottomley

[SCSI] ibmmca: fix buffer overflow

Allows i == IM_MAX_HOSTS, which is out of range.
Signed-off-by: NRoel Kluin <roel.kluin@gmail.com>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NJames Bottomley <James.Bottomley@suse.de>
上级 4a02462a
......@@ -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++;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册