]> git.baikalelectronics.ru Git - kernel.git/commit
dpaa2-mac: Fix potential null pointer dereference
authorGustavo A. R. Silva <gustavoars@kernel.org>
Fri, 25 Sep 2020 17:03:23 +0000 (12:03 -0500)
committerDavid S. Miller <davem@davemloft.net>
Sat, 26 Sep 2020 00:15:37 +0000 (17:15 -0700)
commitc8cf959b96373409ede47375afedf414baadac8c
tree227fc76e88a1131729b25983ebddcc2c9c93be43
parent635b08bcb1dcbe983710288b11f6626f282a39b4
dpaa2-mac: Fix potential null pointer dereference

There is a null-check for _pcs_, but it is being dereferenced
prior to this null-check. So, if _pcs_ can actually be null,
then there is a potential null pointer dereference that should
be fixed by null-checking _pcs_ before being dereferenced.

Addresses-Coverity-ID: 1497159 ("Dereference before null check")
Fixes: 402fbd30a673 ("dpaa2-mac: add PCS support through the Lynx module")
Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/freescale/dpaa2/dpaa2-mac.c