mirror of
https://github.com/torvalds/linux.git
synced 2026-06-07 22:14:04 +02:00
net: w5100: check return value after calling platform_get_resource()
[ Upstream commit a39ff4a47f ]
It will cause null-ptr-deref if platform_get_resource() returns NULL,
we need check the return value.
Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
c49a52046d
commit
fb1ee02787
|
|
@ -1052,6 +1052,8 @@ static int w5100_mmio_probe(struct platform_device *pdev)
|
||||||
mac_addr = data->mac_addr;
|
mac_addr = data->mac_addr;
|
||||||
|
|
||||||
mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
||||||
|
if (!mem)
|
||||||
|
return -EINVAL;
|
||||||
if (resource_size(mem) < W5100_BUS_DIRECT_SIZE)
|
if (resource_size(mem) < W5100_BUS_DIRECT_SIZE)
|
||||||
ops = &w5100_mmio_indirect_ops;
|
ops = &w5100_mmio_indirect_ops;
|
||||||
else
|
else
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user