mirror of
https://github.com/hardkernel/linux.git
synced 2026-03-26 04:20:23 +09:00
clk: tegra: tegra124-emc: Fix potential memory leak
[ Upstream commit53a06e5924] The tegra and tegra needs to be freed in the error handling path, otherwise it will be leaked. Fixes:2db04f16b5("clk: tegra: Add EMC clock driver") Signed-off-by: Yuan Can <yuancan@huawei.com> Link: https://lore.kernel.org/r/20221209094124.71043-1-yuancan@huawei.com Acked-by: Thierry Reding <treding@nvidia.com> Signed-off-by: Stephen Boyd <sboyd@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
2f276dd9c0
commit
fd1c117bb5
@@ -464,6 +464,7 @@ static int load_timings_from_dt(struct tegra_clk_emc *tegra,
|
||||
err = load_one_timing_from_dt(tegra, timing, child);
|
||||
if (err) {
|
||||
of_node_put(child);
|
||||
kfree(tegra->timings);
|
||||
return err;
|
||||
}
|
||||
|
||||
@@ -515,6 +516,7 @@ struct clk *tegra124_clk_register_emc(void __iomem *base, struct device_node *np
|
||||
err = load_timings_from_dt(tegra, node, node_ram_code);
|
||||
if (err) {
|
||||
of_node_put(node);
|
||||
kfree(tegra);
|
||||
return ERR_PTR(err);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user