* [PATCH v2] [media] exynos4-is: Fix potential null pointer dereference in mipi-csis.c
@ 2013-04-26 8:52 Sachin Kamat
2013-04-26 10:25 ` Sylwester Nawrocki
0 siblings, 1 reply; 2+ messages in thread
From: Sachin Kamat @ 2013-04-26 8:52 UTC (permalink / raw)
To: linux-media; +Cc: s.nawrocki, sachin.kamat, patches
When 'node' is NULL, the print statement tries to dereference it.
Hence replace the variable with the one that is accessible.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
---
Changes since v1:
Used pdev->dev.of_node->full_name for node name.
---
drivers/media/platform/exynos4-is/mipi-csis.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/media/platform/exynos4-is/mipi-csis.c b/drivers/media/platform/exynos4-is/mipi-csis.c
index a2eda9d..254d70f 100644
--- a/drivers/media/platform/exynos4-is/mipi-csis.c
+++ b/drivers/media/platform/exynos4-is/mipi-csis.c
@@ -746,7 +746,7 @@ static int s5pcsis_parse_dt(struct platform_device *pdev,
node = v4l2_of_get_next_endpoint(node, NULL);
if (!node) {
dev_err(&pdev->dev, "No port node at %s\n",
- node->full_name);
+ pdev->dev.of_node->full_name);
return -EINVAL;
}
/* Get port node and validate MIPI-CSI channel id. */
--
1.7.9.5
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-04-26 10:25 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-26 8:52 [PATCH v2] [media] exynos4-is: Fix potential null pointer dereference in mipi-csis.c Sachin Kamat
2013-04-26 10:25 ` Sylwester Nawrocki
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.