From: Shan Wei Date: Tue, 8 Mar 2011 14:37:27 +0000 (+0100) Subject: netfilter: ipset: fix the compile warning in ip_set_create X-Git-Tag: v2.6.39-rc1~468^2~26^2~36 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=9846ada138accc63994b57ebdfa76e3e137729e2;p=~shefty%2Frdma-dev.git 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 Signed-off-by: Jozsef Kadlecsik Signed-off-by: Patrick McHardy --- diff --git a/net/netfilter/ipset/ip_set_core.c b/net/netfilter/ipset/ip_set_core.c index 8b1a54c1e40..618a615acc9 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;