Files
linux/drivers/net
YueHaibing af03a980e8 ieee802154: ca8210: fix possible u8 overflow in ca8210_rx_done
[ Upstream commit 8e41cae64b ]

gcc warning this:

drivers/net/ieee802154/ca8210.c:730:10: warning:
 comparison is always false due to limited range of data type [-Wtype-limits]

'len' is u8 type, we get it from buf[1] adding 2, which can overflow.
This patch change the type of 'len' to unsigned int to avoid this,also fix
the gcc warning.

Fixes: ded845a781 ("ieee802154: Add CA8210 IEEE 802.15.4 device driver")
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Signed-off-by: Stefan Schmidt <stefan@datenfreihafen.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
2019-01-13 09:50:58 +01:00
..
2018-06-12 16:19:22 -07:00
2018-07-20 12:33:37 -07:00
2018-05-28 23:02:22 -04:00
2018-12-21 14:15:20 +01:00
2018-05-28 22:59:54 -04:00
2018-12-17 09:24:28 +01:00
2018-09-16 15:33:50 -07:00