Commit 63e2ae9d authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Greg Kroah-Hartman

gpio: fix error path in lineevent_create

commit f001cc35 upstream.

If gpiod_request() fails the cleanup must not call gpiod_free().

Cc: stable@vger.kernel.org
Fixes: 61f922db ("gpio: userspace ABI for reading GPIO line events")
Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 2b0e6725
...@@ -795,7 +795,7 @@ static int lineevent_create(struct gpio_device *gdev, void __user *ip) ...@@ -795,7 +795,7 @@ static int lineevent_create(struct gpio_device *gdev, void __user *ip)
desc = &gdev->descs[offset]; desc = &gdev->descs[offset];
ret = gpiod_request(desc, le->label); ret = gpiod_request(desc, le->label);
if (ret) if (ret)
goto out_free_desc; goto out_free_label;
le->desc = desc; le->desc = desc;
le->eflags = eflags; le->eflags = eflags;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment