From: Javier Carrasco <javier.carrasco.cruz@xxxxxxxxx> commit e41d574b359ccd8d99be65c6f11502efa2b83136 upstream. The fwnode_for_each_child_node() loop requires manual intervention to decrement the child refcount in case of an early return. Add the missing calls to fwnode_handle_put(child) to avoid memory leaks in the error paths. Cc: stable@xxxxxxxxxxxxxxx Fixes: 679f8652064b ("leds: Add mt6360 driver") Signed-off-by: Javier Carrasco <javier.carrasco.cruz@xxxxxxxxx> Acked-by: Pavel Machek <pavel@xxxxxx> Link: https://lore.kernel.org/r/20240611-leds-mt6360-memleak-v1-1-93642eb5011e@xxxxxxxxx Signed-off-by: Lee Jones <lee@xxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/leds/flash/leds-mt6360.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) --- a/drivers/leds/flash/leds-mt6360.c +++ b/drivers/leds/flash/leds-mt6360.c @@ -643,14 +643,17 @@ static int mt6360_init_isnk_properties(s ret = fwnode_property_read_u32(child, "reg", ®); if (ret || reg > MT6360_LED_ISNK3 || - priv->leds_active & BIT(reg)) + priv->leds_active & BIT(reg)) { + fwnode_handle_put(child); return -EINVAL; + } ret = fwnode_property_read_u32(child, "color", &color); if (ret) { dev_err(priv->dev, "led %d, no color specified\n", led->led_no); + fwnode_handle_put(child); return ret; } Patches currently in stable-queue which might be from javier.carrasco.cruz@xxxxxxxxx are queue-6.10/cpufreq-qcom-nvmem-fix-memory-leaks-in-probe-error-paths.patch queue-6.10/mfd-omap-usb-tll-use-struct_size-to-allocate-tll.patch queue-6.10/leds-mt6360-fix-memory-leak-in-mt6360_init_isnk_properties.patch queue-6.10/cpufreq-sun50i-fix-memory-leak-in-dt_has_supported_h.patch