[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1494561328-39514-3-git-send-email-guohanjun@huawei.com>
Date: Fri, 12 May 2017 11:55:27 +0800
From: Hanjun Guo <guohanjun@...wei.com>
To: Marc Zyngier <marc.zyngier@....com>,
Thomas Gleixner <tglx@...utronix.de>
CC: Kefeng Wang <wangkefeng.wang@...wei.com>,
Wei Yongjun <weiyongjun1@...wei.com>,
MaJun <majun258@...wei.com>, <linux-kernel@...r.kernel.org>,
<linuxarm@...wei.com>, Hanjun Guo <hanjun.guo@...aro.org>
Subject: [PATCH v2 2/3] irqchip/mbigen: Fix potential NULL dereferencing
From: Hanjun Guo <hanjun.guo@...aro.org>
platform_get_resource() may return NULL, add proper
check to avoid potential NULL dereferencing.
Signed-off-by: Hanjun Guo <hanjun.guo@...aro.org>
---
drivers/irqchip/irq-mbigen.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/irqchip/irq-mbigen.c b/drivers/irqchip/irq-mbigen.c
index 0f5e66e..2fa1e45 100644
--- a/drivers/irqchip/irq-mbigen.c
+++ b/drivers/irqchip/irq-mbigen.c
@@ -337,6 +337,9 @@ static int mbigen_device_probe(struct platform_device *pdev)
mgn_chip->pdev = pdev;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
+ if (!res)
+ return -EINVAL;
+
mgn_chip->base = devm_ioremap(&pdev->dev, res->start,
resource_size(res));
if (!mgn_chip->base) {
--
1.7.12.4
Powered by blists - more mailing lists