On Sat, 2006-03-11 at 04:42 +0100, Adrian Bunk wrote:
> This patch fixes a big array overun found by the Coverity checker.
>
>
> Signed-off-by: Adrian Bunk <[email protected]>
>
> --- linux-2.6.16-rc5-mm3-full/drivers/net/wireless/ipw2200.c.old 2006-03-11 02:41:23.000000000 +0100
> +++ linux-2.6.16-rc5-mm3-full/drivers/net/wireless/ipw2200.c 2006-03-11 02:42:04.000000000 +0100
> @@ -9956,9 +9956,8 @@ static int ipw_ethtool_set_eeprom(struct
> return -EINVAL;
> mutex_lock(&p->mutex);
> memcpy(&p->eeprom[eeprom->offset], bytes, eeprom->len);
> - for (i = IPW_EEPROM_DATA;
> - i < IPW_EEPROM_DATA + IPW_EEPROM_IMAGE_SIZE; i++)
> - ipw_write8(p, i, p->eeprom[i]);
> + for (i = 0; i < IPW_EEPROM_IMAGE_SIZE; i++)
> + ipw_write8(p, i + IPW_EEPROM_DATA, p->eeprom[i]);
> mutex_unlock(&p->mutex);
> return 0;
> }
Acked-by: Zhu Yi <[email protected]>
Thanks,
-yi
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[Index of Archives]
[Kernel Newbies]
[Netfilter]
[Bugtraq]
[Photo]
[Stuff]
[Gimp]
[Yosemite News]
[MIPS Linux]
[ARM Linux]
[Linux Security]
[Linux RAID]
[Video 4 Linux]
[Linux for the blind]
[Linux Resources]