aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorRoel Kluin <roel.kluin@gmail.com>2009-07-12 19:48:42 -0400
committerInaky Perez-Gonzalez <inaky@linux.intel.com>2009-10-19 02:55:35 -0400
commita6346fa583766a51b7723288fc5d73ee5ea93479 (patch)
tree5c8a6a682a93eccde349c59705550e0ebbc5817d /drivers
parentc29eaf3faef7547ba72355bac44e9ca6ffdaee39 (diff)
i2400m: keep index within ms_to_errno[]
Ensure that index `status' remains within ms_to_errno[] Signed-off-by: Roel Kluin <roel.kluin@gmail.com> Signed-off-by: Inaky Perez-Gonzalez <inaky@linux.intel.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/net/wimax/i2400m/control.c2
1 files changed, 1 insertions, 1 deletions
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,
263 263
264 if (status == 0) 264 if (status == 0)
265 return 0; 265 return 0;
266 if (status > ARRAY_SIZE(ms_to_errno)) { 266 if (status >= ARRAY_SIZE(ms_to_errno)) {
267 str = "unknown status code"; 267 str = "unknown status code";
268 result = -EBADR; 268 result = -EBADR;
269 } else { 269 } else {