diff mbox series

[for-3.18,2/7] regulator: core: Fix regualtor_ena_gpio_free not to access pin after freeing

Message ID 1493832958-12489-3-git-send-email-amit.pundir@linaro.org
State New
Headers show
Series Security fixes picked from android security bulletins | expand

Commit Message

Amit Pundir May 3, 2017, 5:35 p.m. UTC
From: Seung-Woo Kim <sw0312.kim@samsung.com>


After freeing pin from regulator_ena_gpio_free, loop can access
the pin. So this patch fixes not to access pin after freeing.

Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>

Signed-off-by: Mark Brown <broonie@kernel.org>

(cherry picked from commit 60a2362f769cf549dc466134efe71c8bf9fbaaba)
Signed-off-by: Amit Pundir <amit.pundir@linaro.org>

---
 drivers/regulator/core.c | 2 ++
 1 file changed, 2 insertions(+)

-- 
2.7.4
diff mbox series

Patch

diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c
index 872e53f15590..b2e183627f53 100644
--- a/drivers/regulator/core.c
+++ b/drivers/regulator/core.c
@@ -1720,6 +1720,8 @@  static void regulator_ena_gpio_free(struct regulator_dev *rdev)
 				gpiod_put(pin->gpiod);
 				list_del(&pin->list);
 				kfree(pin);
+				rdev->ena_pin = NULL;
+				return;
 			} else {
 				pin->request_count--;
 			}