clk: ti: composite: fix memory leak
The parent_names is never released for a component clock definition, causing some memory leak. Fix by releasing it once it is no longer needed. Reported-by: Tomi Valkeinen <tomi.valkeinen@ti.com> Signed-off-by: Tero Kristo <t-kristo@ti.com> Link: https://lkml.kernel.org/r/20200429131341.4697-2-t-kristo@ti.com Acked-by: Tony Lindgren <tony@atomide.com> Signed-off-by: Stephen Boyd <sboyd@kernel.org>
This commit is contained in:
parent
8f3d9f3542
commit
c7c1cbbc92
@ -196,6 +196,7 @@ cleanup:
|
|||||||
if (!cclk->comp_clks[i])
|
if (!cclk->comp_clks[i])
|
||||||
continue;
|
continue;
|
||||||
list_del(&cclk->comp_clks[i]->link);
|
list_del(&cclk->comp_clks[i]->link);
|
||||||
|
kfree(cclk->comp_clks[i]->parent_names);
|
||||||
kfree(cclk->comp_clks[i]);
|
kfree(cclk->comp_clks[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user