* [NETFILTER 2/8]: pptp helper: fix expectation leaks
@ 2005-09-15 22:44 Patrick McHardy
0 siblings, 0 replies; only message in thread
From: Patrick McHardy @ 2005-09-15 22:44 UTC (permalink / raw)
To: Harald Welte; +Cc: Netfilter Development Mailinglist, David S. Miller
[-- Attachment #1: 02.diff --]
[-- Type: text/x-patch, Size: 1704 bytes --]
[NETFILTER]: pptp helper: fix expectation leaks
Signed-off-by: Patrick McHardy <kaber@trash.net>
---
commit 66479fa28dab1e923dd946ae1eafe7cbf89fa9a1
tree 846f0596cdeea1e41696258b182fe86f6730ae03
parent b806b1f4d971bfb3bd348a7d8d9029b6b5c9c23b
author Patrick McHardy <kaber@trash.net> Thu, 15 Sep 2005 22:32:57 +0200
committer Patrick McHardy <kaber@trash.net> Thu, 15 Sep 2005 22:32:57 +0200
net/ipv4/netfilter/ip_conntrack_helper_pptp.c | 2 ++
net/ipv4/netfilter/ip_nat_helper_pptp.c | 1 +
2 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/net/ipv4/netfilter/ip_conntrack_helper_pptp.c b/net/ipv4/netfilter/ip_conntrack_helper_pptp.c
--- a/net/ipv4/netfilter/ip_conntrack_helper_pptp.c
+++ b/net/ipv4/netfilter/ip_conntrack_helper_pptp.c
@@ -129,6 +129,7 @@ static void pptp_expectfn(struct ip_conn
/* delete other expectation. */
DEBUGP("found\n");
ip_conntrack_unexpect_related(exp_other);
+ ip_conntrack_expect_put(exp_other);
} else {
DEBUGP("not found\n");
}
@@ -160,6 +161,7 @@ static int timeout_ct_or_exp(const struc
if (exp) {
DEBUGP("unexpect_related of expect %p\n", exp);
ip_conntrack_unexpect_related(exp);
+ ip_conntrack_expect_put(exp);
return 1;
}
}
diff --git a/net/ipv4/netfilter/ip_nat_helper_pptp.c b/net/ipv4/netfilter/ip_nat_helper_pptp.c
--- a/net/ipv4/netfilter/ip_nat_helper_pptp.c
+++ b/net/ipv4/netfilter/ip_nat_helper_pptp.c
@@ -104,6 +104,7 @@ static void pptp_nat_expected(struct ip_
other_exp = __ip_conntrack_expect_find(&t);
if (other_exp) {
ip_conntrack_unexpect_related(other_exp);
+ ip_conntrack_expect_put(other_exp);
DEBUGP("success\n");
} else {
DEBUGP("not found!\n");
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2005-09-15 22:44 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-09-15 22:44 [NETFILTER 2/8]: pptp helper: fix expectation leaks Patrick McHardy
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.