From: Roel Kluin Date: Sun, 12 Jul 2009 23:48:42 +0000 (+0200) Subject: i2400m: keep index within ms_to_errno[] X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=a6346fa583766a51b7723288fc5d73ee5ea93479;p=deliverable%2Flinux.git i2400m: keep index within ms_to_errno[] Ensure that index `status' remains within ms_to_errno[] Signed-off-by: Roel Kluin Signed-off-by: Inaky Perez-Gonzalez --- diff --git a/drivers/net/wimax/i2400m/control.c b/drivers/net/wimax/i2400m/control.c index 07308686dbcf..8fe70e75d030 100644 --- a/drivers/net/wimax/i2400m/control.c +++ b/drivers/net/wimax/i2400m/control.c @@ -263,7 +263,7 @@ int i2400m_msg_check_status(const struct i2400m_l3l4_hdr *l3l4_hdr, if (status == 0) return 0; - if (status > ARRAY_SIZE(ms_to_errno)) { + if (status >= ARRAY_SIZE(ms_to_errno)) { str = "unknown status code"; result = -EBADR; } else {