eepro: Read buffer overflow
authorRoel Kluin <roel.kluin@gmail.com>
Mon, 27 Jul 2009 01:53:17 +0000 (18:53 -0700)
committerDavid S. Miller <davem@davemloft.net>
Mon, 27 Jul 2009 01:53:17 +0000 (18:53 -0700)
io[i] is read before the bounds check on i, order should be reversed

Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/eepro.c

index cc2ab64..4f70034 100644 (file)
@@ -1784,7 +1784,7 @@ int __init init_module(void)
                printk(KERN_INFO "eepro_init_module: Auto-detecting boards (May God protect us...)\n");
        }
 
-       for (i = 0; io[i] != -1 && i < MAX_EEPRO; i++) {
+       for (i = 0; i < MAX_EEPRO && io[i] != -1; i++) {
                dev = alloc_etherdev(sizeof(struct eepro_local));
                if (!dev)
                        break;