Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1619344 > unrolled thread

[PATCH] Input: omap-keypad - fix error handling code

Started byChristophe JAILLET <christophe.jaillet@wanadoo.fr>
First post2017-04-08 19:30 +0200
Last post2017-04-08 19:30 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH] Input: omap-keypad - fix error handling code Christophe JAILLET <christophe.jaillet@wanadoo.fr> - 2017-04-08 19:30 +0200

#1619344 — [PATCH] Input: omap-keypad - fix error handling code

FromChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Date2017-04-08 19:30 +0200
Subject[PATCH] Input: omap-keypad - fix error handling code
Message-ID<tu2ls-8cD-17@gated-at.bofh.it>
According to the previous error handling code, it is likely that
'goto err_free_keymap' is expected here in order to avoid a memory leak
in error handling path.

Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
---
 drivers/input/keyboard/omap4-keypad.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/input/keyboard/omap4-keypad.c b/drivers/input/keyboard/omap4-keypad.c
index ebc67ba41fe2..940d38b08e6b 100644
--- a/drivers/input/keyboard/omap4-keypad.c
+++ b/drivers/input/keyboard/omap4-keypad.c
@@ -358,7 +358,7 @@ static int omap4_keypad_probe(struct platform_device *pdev)
 				     "omap4-keypad", keypad_data);
 	if (error) {
 		dev_err(&pdev->dev, "failed to register interrupt\n");
-		goto err_free_input;
+		goto err_free_keymap;
 	}
 
 	device_init_wakeup(&pdev->dev, true);
-- 
2.11.0

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web