Commit 3b73e79b authored by roel kluin's avatar roel kluin Committed by David S. Miller

at1700: Read buffer overflow

loop bound looks to be wrong, for an array of length 8
Signed-off-by: default avatarRoel Kluin <roel.kluin@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent f83284fe
...@@ -318,7 +318,7 @@ static int __init at1700_probe1(struct net_device *dev, int ioaddr) ...@@ -318,7 +318,7 @@ static int __init at1700_probe1(struct net_device *dev, int ioaddr)
pos3 = mca_read_stored_pos( slot, 3 ); pos3 = mca_read_stored_pos( slot, 3 );
pos4 = mca_read_stored_pos( slot, 4 ); pos4 = mca_read_stored_pos( slot, 4 );
for (l_i = 0; l_i < 0x09; l_i++) for (l_i = 0; l_i < 8; l_i++)
if (( pos3 & 0x07) == at1700_ioaddr_pattern[l_i]) if (( pos3 & 0x07) == at1700_ioaddr_pattern[l_i])
break; break;
ioaddr = at1700_mca_probe_list[l_i]; ioaddr = at1700_mca_probe_list[l_i];
......
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