]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
reset: gpio: fix double free in reset_add_gpio_aux_device() error path
authorGuangshuo Li <lgs201920130244@gmail.com>
Sat, 21 Mar 2026 07:42:40 +0000 (15:42 +0800)
committerPhilipp Zabel <p.zabel@pengutronix.de>
Mon, 23 Mar 2026 11:18:41 +0000 (12:18 +0100)
When __auxiliary_device_add() fails, reset_add_gpio_aux_device()
calls auxiliary_device_uninit(adev).

The device release callback reset_gpio_aux_device_release() frees
adev, but the current error path then calls kfree(adev) again,
causing a double free.

Keep kfree(adev) for the auxiliary_device_init() failure path, but
avoid freeing adev after auxiliary_device_uninit().

Fixes: 5fc4e4cf7a22 ("reset: gpio: use software nodes to setup the GPIO lookup")
Cc: stable@vger.kernel.org
Signed-off-by: Guangshuo Li <lgs201920130244@gmail.com>
Reviewed-by: Bartosz Golaszewski <bartosz.golaszewski@oss.qualcomm.com>
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
drivers/reset/core.c

index fceec45c8afc1e74fe46311bdc023ff257e8d770..352c2360603bcff6e4e600177f0a581a1a4aa946 100644 (file)
@@ -856,7 +856,6 @@ static int reset_add_gpio_aux_device(struct device *parent,
        ret = __auxiliary_device_add(adev, "reset");
        if (ret) {
                auxiliary_device_uninit(adev);
-               kfree(adev);
                return ret;
        }