public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] batman-adv: Fix mem leak in the batadv_tt_local_event() function
@ 2012-08-07 18:32 Jesper Juhl
  2012-08-07 18:38 ` Jesper Juhl
  2012-08-07 18:50 ` Antonio Quartulli
  0 siblings, 2 replies; 4+ messages in thread
From: Jesper Juhl @ 2012-08-07 18:32 UTC (permalink / raw)
  To: linux-kernel
  Cc: netdev, b.a.t.m.a.n, David S. Miller, Antonio Quartulli,
	Simon Wunderlich, Marek Lindner

Memory is allocated for 'tt_change_node' with kmalloc().
'tt_change_node' may go out of scope really being used for anything
(except have a few members initialized) if we hit the 'del:' label.
This patch makes sure we free the memory in that case.

Signed-off-by: Jesper Juhl <jj@chaosbits.net>
---
 net/batman-adv/translation-table.c | 1 +
 1 file changed, 1 insertion(+)

 Compile tested only.

diff --git a/net/batman-adv/translation-table.c b/net/batman-adv/translation-table.c
index a438f4b..99dd8f7 100644
--- a/net/batman-adv/translation-table.c
+++ b/net/batman-adv/translation-table.c
@@ -197,6 +197,7 @@ static void batadv_tt_local_event(struct batadv_priv *bat_priv,
 del:
 		list_del(&entry->list);
 		kfree(entry);
+		kfree(tt_change_node);
 		event_removed = true;
 		goto unlock;
 	}
-- 
1.7.11.4


-- 
Jesper Juhl <jj@chaosbits.net>       http://www.chaosbits.net/
Don't top-post http://www.catb.org/jargon/html/T/top-post.html
Plain text mails only, please.


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

end of thread, other threads:[~2012-08-08 23:04 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-07 18:32 [PATCH] batman-adv: Fix mem leak in the batadv_tt_local_event() function Jesper Juhl
2012-08-07 18:38 ` Jesper Juhl
2012-08-07 18:50 ` Antonio Quartulli
2012-08-08 23:04   ` David Miller

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