* [PATCH] clk: sunxi: fix memory leaks
@ 2013-10-24 12:25 Valentin Ilie
  2013-10-24 15:52 ` Maxime Ripard
  0 siblings, 1 reply; 2+ messages in thread
From: Valentin Ilie @ 2013-10-24 12:25 UTC (permalink / raw)
  To: linux-arm-kernel
When the if condition is true, "fixed" and "gate" should be free'd before return.
Signed-off-by: Valentin Ilie <valentin.ilie@gmail.com>
---
 drivers/clk/sunxi/clk-sunxi.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/drivers/clk/sunxi/clk-sunxi.c b/drivers/clk/sunxi/clk-sunxi.c
index 34ee69f..a970b55 100644
--- a/drivers/clk/sunxi/clk-sunxi.c
+++ b/drivers/clk/sunxi/clk-sunxi.c
@@ -48,8 +48,11 @@ static void __init sun4i_osc_clk_setup(struct device_node *node)
 		return;
 	}
 
-	if (of_property_read_u32(node, "clock-frequency", &rate))
+	if (of_property_read_u32(node, "clock-frequency", &rate)) {
+		kfree(fixed);
+		kfree(gate);
 		return;
+	}
 
 	/* set up gate and fixed rate properties */
 	gate->reg = of_iomap(node, 0);
-- 
1.8.1.2
^ permalink raw reply related	[flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-10-24 15:52 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-24 12:25 [PATCH] clk: sunxi: fix memory leaks Valentin Ilie
2013-10-24 15:52 ` Maxime Ripard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).