dect
/
linux-2.6
Archived
13
0
Fork 0

wavelan: Test arraysize before an element of the array.

Test arraysize before an element of the array.

Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
Roel Kluin 2009-02-11 21:51:31 +01:00 committed by John W. Linville
parent 076ae609d2
commit 4d8faf6937
1 changed files with 1 additions and 2 deletions

View File

@ -4281,8 +4281,7 @@ int __init init_module(void)
/* Loop on all possible base addresses. */
i = -1;
while ((io[++i] != 0) && (i < ARRAY_SIZE(io))) {
for (i = 0; i < ARRAY_SIZE(io) && io[i] != 0; i++) {
struct net_device *dev = alloc_etherdev(sizeof(net_local));
if (!dev)
break;