提交 a192491a 编写于 作者: E Eric Sesterhenn 提交者: Jeff Garzik

[PATCH] Array overrun in drivers/net/wireless/wavelan.c

hi,

this is another array overrun spotted by coverity (#id 507)
we should check the index against array size before using it.
Not sure why the driver doesnt use ARRAY_SIZE instead of its
own macro.
Signed-off-by: NEric Sesterhenn <snakebyte@gmx.de>
Signed-off-by: NJeff Garzik <jeff@garzik.org>
上级 da4f5ccf
...@@ -1695,8 +1695,8 @@ static int wv_frequency_list(unsigned long ioaddr, /* I/O port of the card */ ...@@ -1695,8 +1695,8 @@ static int wv_frequency_list(unsigned long ioaddr, /* I/O port of the card */
/* Look in the table if the frequency is allowed */ /* Look in the table if the frequency is allowed */
if (table[9 - (freq / 16)] & (1 << (freq % 16))) { if (table[9 - (freq / 16)] & (1 << (freq % 16))) {
/* Compute approximate channel number */ /* Compute approximate channel number */
while ((((channel_bands[c] >> 1) - 24) < freq) && while ((c < NELS(channel_bands)) &&
(c < NELS(channel_bands))) (((channel_bands[c] >> 1) - 24) < freq))
c++; c++;
list[i].i = c; /* Set the list index */ list[i].i = c; /* Set the list index */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册