ray_cs: fix array out-of-bounds access
Currently array element org[3] is being accessed, however the array is only 3 elements in size, so this looks like an off-by-one out-of-bounds error. Fix this by using org[2], which I believe was the original intent. This issue has existed in the driver back in the pre-git days, so no idea when it was introduced. Detected by CoverityScan, CID#711344 ("Out-of-bounds read") Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
parent
ba2ffc9632
commit
72255c8071
@ -959,7 +959,7 @@ static int translate_frame(ray_dev_t *local, struct tx_msg __iomem *ptx,
|
||||
if (proto == htons(ETH_P_AARP) || proto == htons(ETH_P_IPX)) {
|
||||
/* This is the selective translation table, only 2 entries */
|
||||
writeb(0xf8,
|
||||
&((struct snaphdr_t __iomem *)ptx->var)->org[3]);
|
||||
&((struct snaphdr_t __iomem *)ptx->var)->org[2]);
|
||||
}
|
||||
/* Copy body of ethernet packet without ethernet header */
|
||||
memcpy_toio((void __iomem *)&ptx->var +
|
||||
|
Loading…
Reference in New Issue
Block a user