]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
drm: rcar-du: Fix memory leak in rcar_du_vsps_init()
authorBiju Das <biju.das.jz@bp.renesas.com>
Thu, 16 Nov 2023 12:24:24 +0000 (12:24 +0000)
committerTomi Valkeinen <tomi.valkeinen+renesas@ideasonboard.com>
Fri, 2 May 2025 08:52:10 +0000 (11:52 +0300)
The rcar_du_vsps_init() doesn't free the np allocated by
of_parse_phandle_with_fixed_args() for the non-error case.

Fix memory leak for the non-error case.

While at it, replace the label 'error'->'done' as it applies to non-error
case as well and update the error check condition for rcar_du_vsp_init()
to avoid breakage in future, if it returns positive value.

Fixes: 3e81374e2014 ("drm: rcar-du: Support multiple sources from the same VSP")
Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Link: https://lore.kernel.org/r/20231116122424.80136-1-biju.das.jz@bp.renesas.com
Signed-off-by: Tomi Valkeinen <tomi.valkeinen+renesas@ideasonboard.com>
drivers/gpu/drm/renesas/rcar-du/rcar_du_kms.c

index 70d8ad065bfa1df87dbcbce16795d5ab07469810..4c8fe83dd6101b657d0d8020e54fdeeafc57909b 100644 (file)
@@ -705,7 +705,7 @@ static int rcar_du_vsps_init(struct rcar_du_device *rcdu)
                ret = of_parse_phandle_with_fixed_args(np, vsps_prop_name,
                                                       cells, i, &args);
                if (ret < 0)
-                       goto error;
+                       goto done;
 
                /*
                 * Add the VSP to the list or update the corresponding existing
@@ -743,13 +743,11 @@ static int rcar_du_vsps_init(struct rcar_du_device *rcdu)
                vsp->dev = rcdu;
 
                ret = rcar_du_vsp_init(vsp, vsps[i].np, vsps[i].crtcs_mask);
-               if (ret < 0)
-                       goto error;
+               if (ret)
+                       goto done;
        }
 
-       return 0;
-
-error:
+done:
        for (i = 0; i < ARRAY_SIZE(vsps); ++i)
                of_node_put(vsps[i].np);