[PATCH] Input: twl4030_keypad - fix potential NULL dereference in twl4030_kp_probe()

Subsystems: input (keyboard, mouse, joystick, touchscreen) drivers, the rest

STALE5644d

2 messages, 2 authors, 2011-04-01 · open the first message on its own page

[PATCH] Input: twl4030_keypad - fix potential NULL dereference in twl4030_kp_probe()

From: Axel Lin <hidden>
Date: 2011-04-01 15:08:14

We should first check whether platform data is NULL or not, before
dereferencing it to get the keymap.

Signed-off-by: Axel Lin <redacted>
---
 drivers/input/keyboard/twl4030_keypad.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/drivers/input/keyboard/twl4030_keypad.c b/drivers/input/keyboard/twl4030_keypad.c
index 09bef79..d02811c 100644
--- a/drivers/input/keyboard/twl4030_keypad.c
+++ b/drivers/input/keyboard/twl4030_keypad.c
@@ -332,7 +332,7 @@ static int __devinit twl4030_kp_program(struct twl4030_keypad *kp)
 static int __devinit twl4030_kp_probe(struct platform_device *pdev)
 {
 	struct twl4030_keypad_data *pdata = pdev->dev.platform_data;
-	const struct matrix_keymap_data *keymap_data = pdata->keymap_data;
+	const struct matrix_keymap_data *keymap_data;
 	struct twl4030_keypad *kp;
 	struct input_dev *input;
 	u8 reg;
@@ -344,6 +344,8 @@ static int __devinit twl4030_kp_probe(struct platform_device *pdev)
 		return -EINVAL;
 	}
 
+	keymap_data = pdata->keymap_data;
+
 	kp = kzalloc(sizeof(*kp), GFP_KERNEL);
 	input = input_allocate_device();
 	if (!kp || !input) {
-- 
1.7.1


Re: [PATCH] Input: twl4030_keypad - fix potential NULL dereference in twl4030_kp_probe()

From: Felipe Balbi <hidden>
Date: 2011-04-01 15:18:52

On Fri, Apr 01, 2011 at 11:08:03PM +0800, Axel Lin wrote:
We should first check whether platform data is NULL or not, before
dereferencing it to get the keymap.

Signed-off-by: Axel Lin <redacted>
Reviewed-by: Felipe Balbi <redacted>

-- 
balbi
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help