aboutsummaryrefslogtreecommitdiff
path: root/net/sched
diff options
context:
space:
mode:
authorPatrick McHardy <kaber@trash.net>2006-01-08 22:17:27 -0800
committerDavid S. Miller <davem@sunset.davemloft.net>2006-01-09 14:16:12 -0800
commit541673c859c0d71dedaaea1c148dfe3ccccc9422 (patch)
tree17a3438e0f77033a7c3911cee91b1d3fff6c91d9 /net/sched
parent31bd06eb33bbabe643385a861d780d950ca73846 (diff)
[PKT_SCHED]: Fix memory leak when dumping in pedit action
Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched')
-rw-r--r--net/sched/pedit.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/net/sched/pedit.c b/net/sched/pedit.c
index b5167afec2dc..1742a68e0122 100644
--- a/net/sched/pedit.c
+++ b/net/sched/pedit.c
@@ -245,10 +245,12 @@ tcf_pedit_dump(struct sk_buff *skb, struct tc_action *a,int bind, int ref)
t.lastuse = jiffies_to_clock_t(jiffies - p->tm.lastuse);
t.expires = jiffies_to_clock_t(p->tm.expires);
RTA_PUT(skb, TCA_PEDIT_TM, sizeof(t), &t);
+ kfree(opt);
return skb->len;
rtattr_failure:
skb_trim(skb, b - skb->data);
+ kfree(opt);
return -1;
}