Commit d513d018 authored by Roel Kluin's avatar Roel Kluin Committed by David S. Miller

eepro: Read buffer overflow

io[i] is read before the bounds check on i, order should be reversed
Signed-off-by: default avatarRoel Kluin <roel.kluin@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent c65d3198
...@@ -1784,7 +1784,7 @@ int __init init_module(void) ...@@ -1784,7 +1784,7 @@ int __init init_module(void)
printk(KERN_INFO "eepro_init_module: Auto-detecting boards (May God protect us...)\n"); 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)); dev = alloc_etherdev(sizeof(struct eepro_local));
if (!dev) if (!dev)
break; break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment