aboutsummaryrefslogtreecommitdiffstats
path: root/net/netfilter/ipset
diff options
context:
space:
mode:
authorShan Wei <shanwei@cn.fujitsu.com>2011-03-08 15:37:27 +0100
committerPatrick McHardy <kaber@trash.net>2011-03-08 15:37:27 +0100
commit9846ada138accc63994b57ebdfa76e3e137729e2 (patch)
tree08297f4c6cf814c858d2cefe28ece9f0a0842470 /net/netfilter/ipset
parent8a80c79a776d1b1b54895314ffaf53d0c7604c80 (diff)
downloadkernel_samsung_smdk4412-9846ada138accc63994b57ebdfa76e3e137729e2.zip
kernel_samsung_smdk4412-9846ada138accc63994b57ebdfa76e3e137729e2.tar.gz
kernel_samsung_smdk4412-9846ada138accc63994b57ebdfa76e3e137729e2.tar.bz2
netfilter: ipset: fix the compile warning in ip_set_create
net/netfilter/ipset/ip_set_core.c:615: warning: ‘clash’ may be used uninitialized in this function Signed-off-by: Shan Wei <shanwei@cn.fujitsu.com> Signed-off-by: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu> Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'net/netfilter/ipset')
-rw-r--r--net/netfilter/ipset/ip_set_core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/netfilter/ipset/ip_set_core.c b/net/netfilter/ipset/ip_set_core.c
index 8b1a54c..618a615 100644
--- a/net/netfilter/ipset/ip_set_core.c
+++ b/net/netfilter/ipset/ip_set_core.c
@@ -612,7 +612,7 @@ ip_set_create(struct sock *ctnl, struct sk_buff *skb,
const struct nlmsghdr *nlh,
const struct nlattr * const attr[])
{
- struct ip_set *set, *clash;
+ struct ip_set *set, *clash = NULL;
ip_set_id_t index = IPSET_INVALID_ID;
struct nlattr *tb[IPSET_ATTR_CREATE_MAX+1] = {};
const char *name, *typename;