mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH 1/2] parameter: fix memory leak
@ 2012-10-10 10:42 Jan Luebbe
  2012-10-10 10:42 ` [PATCH 2/2] parameter: support removing named parameters Jan Luebbe
  2012-10-12  8:03 ` [PATCH 1/2] parameter: fix memory leak Sascha Hauer
  0 siblings, 2 replies; 3+ messages in thread
From: Jan Luebbe @ 2012-10-10 10:42 UTC (permalink / raw)
  To: barebox

In __dev_add_param, the name string is allocated using strdup.
Free it when removing the parameter.

Signed-off-by: Jan Luebbe <jlu@pengutronix.de>
---
 lib/parameter.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/parameter.c b/lib/parameter.c
index 3ecb480..b33ad17 100644
--- a/lib/parameter.c
+++ b/lib/parameter.c
@@ -224,6 +224,7 @@ void dev_remove_parameters(struct device_d *dev)
 	list_for_each_entry_safe(p, n, &dev->parameters, list) {
 		p->set(dev, p, NULL);
 		list_del(&p->list);
+		free(p->name);
 		free(p);
 	}
 }
-- 
1.7.10.4


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-10-12  8:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-10-10 10:42 [PATCH 1/2] parameter: fix memory leak Jan Luebbe
2012-10-10 10:42 ` [PATCH 2/2] parameter: support removing named parameters Jan Luebbe
2012-10-12  8:03 ` [PATCH 1/2] parameter: fix memory leak Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox