diff options
author | Patrick McHardy <kaber@trash.net> | 2006-06-09 15:18:17 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-06-18 00:30:09 -0400 |
commit | 2b2283d0302d520f08ded41c2ca17886dfbb865a (patch) | |
tree | 35b8cfa9a50107a73b6e47552eae433133f16931 /net | |
parent | a0e889bb1bdc083dbbdb02cce9698765847b841f (diff) |
[NETFILTER]: recent match: missing refcnt initialization
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/ipv4/netfilter/ipt_recent.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv4/netfilter/ipt_recent.c b/net/ipv4/netfilter/ipt_recent.c index 9b09e481957d..61a2139f9cfd 100644 --- a/net/ipv4/netfilter/ipt_recent.c +++ b/net/ipv4/netfilter/ipt_recent.c | |||
@@ -262,6 +262,7 @@ ipt_recent_checkentry(const char *tablename, const void *ip, | |||
262 | GFP_KERNEL); | 262 | GFP_KERNEL); |
263 | if (t == NULL) | 263 | if (t == NULL) |
264 | goto out; | 264 | goto out; |
265 | t->refcnt = 1; | ||
265 | strcpy(t->name, info->name); | 266 | strcpy(t->name, info->name); |
266 | INIT_LIST_HEAD(&t->lru_list); | 267 | INIT_LIST_HEAD(&t->lru_list); |
267 | for (i = 0; i < ip_list_hash_size; i++) | 268 | for (i = 0; i < ip_list_hash_size; i++) |