diff options
| author | Patrick McHardy <kaber@trash.net> | 2007-01-09 03:03:26 -0500 |
|---|---|---|
| committer | David S. Miller <davem@sunset.davemloft.net> | 2007-01-09 03:30:07 -0500 |
| commit | 88044c8c9635b2ec67a27c6f334965e5b97eb2c7 (patch) | |
| tree | 281c94c650cb870d1af89fe1baf26fce9536472b | |
| parent | c1d2a1965a00693bddaddf75d57488a0d8e891af (diff) | |
[NETFILTER]: nf_conntrack_netbios_ns: fix uninitialized member in expectation
->helper is uninitialized in the expectation registered by the netbios_ns
helper and it later copied to the expected connection, which causes invalid
memory dereferences when trying to call the helper.
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
| -rw-r--r-- | net/netfilter/nf_conntrack_netbios_ns.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/netfilter/nf_conntrack_netbios_ns.c b/net/netfilter/nf_conntrack_netbios_ns.c index a5b234e444dc..2a48efdf0d67 100644 --- a/net/netfilter/nf_conntrack_netbios_ns.c +++ b/net/netfilter/nf_conntrack_netbios_ns.c | |||
| @@ -89,6 +89,7 @@ static int help(struct sk_buff **pskb, unsigned int protoff, | |||
| 89 | 89 | ||
| 90 | exp->expectfn = NULL; | 90 | exp->expectfn = NULL; |
| 91 | exp->flags = NF_CT_EXPECT_PERMANENT; | 91 | exp->flags = NF_CT_EXPECT_PERMANENT; |
| 92 | exp->helper = NULL; | ||
| 92 | 93 | ||
| 93 | nf_conntrack_expect_related(exp); | 94 | nf_conntrack_expect_related(exp); |
| 94 | nf_conntrack_expect_put(exp); | 95 | nf_conntrack_expect_put(exp); |
