]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
media: platform: allgro-dvt: unregister v4l2_device on the error path
authorJoe Hattori <joe@pf.is.s.u-tokyo.ac.jp>
Thu, 5 Dec 2024 02:06:21 +0000 (11:06 +0900)
committerHans Verkuil <hverkuil@xs4all.nl>
Sat, 22 Feb 2025 10:12:59 +0000 (11:12 +0100)
In allegro_probe(), the v4l2 device is not unregistered in the error
path, which results in a memory leak. Fix it by calling
v4l2_device_unregister() before returning error.

Fixes: d74d4e2359ec ("media: allegro: move driver out of staging")
Signed-off-by: Joe Hattori <joe@pf.is.s.u-tokyo.ac.jp>
Reviewed-by: Michael Tretter <m.tretter@pengutronix.de>
Signed-off-by: Sebastian Fricke <sebastian.fricke@collabora.com>
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
drivers/media/platform/allegro-dvt/allegro-core.c

index e491399afcc984346eb4159111f35bab5340f2b5..eb03df0d8652745ef533b9b7aa6c105a140ad022 100644 (file)
@@ -3912,6 +3912,7 @@ static int allegro_probe(struct platform_device *pdev)
        if (ret < 0) {
                v4l2_err(&dev->v4l2_dev,
                         "failed to request firmware: %d\n", ret);
+               v4l2_device_unregister(&dev->v4l2_dev);
                return ret;
        }