mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-30 13:36:45 +07:00
linux-can-fixes-for-3.14-20140212
-----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iEYEABECAAYFAlL7SvUACgkQjTAFq1RaXHNKIgCfQ4bisAc/ZZrqfa6R9uXTsb4J +toAnAs4U0U453IWMutrshb4gaAGrOaG =IWyw -----END PGP SIGNATURE----- Merge tag 'linux-can-fixes-for-3.14-20140212' of git://gitorious.org/linux-can/linux-can linux-can-fixes-for-3.14-20140212 Marc Kleine-Budde says: ==================== this is a pull request with one patch for net/master, for the current release cycle. Olivier Sobrie noticed and fixed that the kvaser_usb driver doesn't check the number of channels value from the hardware, which may result in writing over the bounds of an array in the driver. ==================== Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
commit
b12a0c311d
@ -473,6 +473,8 @@ static int kvaser_usb_get_card_info(struct kvaser_usb *dev)
|
|||||||
return err;
|
return err;
|
||||||
|
|
||||||
dev->nchannels = msg.u.cardinfo.nchannels;
|
dev->nchannels = msg.u.cardinfo.nchannels;
|
||||||
|
if (dev->nchannels > MAX_NET_DEVICES)
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user