diff options
author | Shan Wei <shanwei@cn.fujitsu.com> | 2011-03-04 15:34:35 +0800 |
---|---|---|
committer | Jozsef Kadlecsik <kadlec@blackhole.kfki.hu> | 2011-03-04 09:54:38 +0100 |
commit | 033a882864ea2cfcb39937c214c2f74685a6b7ac (patch) | |
tree | e8ad5ddd18f8974bf02db5e6a284fcbd1cbdc11c | |
parent | d6ee5bb4e5346b84efa33858091ba4add2b26de2 (diff) | |
download | ipset-033a882864ea2cfcb39937c214c2f74685a6b7ac.tar.gz |
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: shanw <shanw@shanw-desktop.(none)>
Signed-off-by: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
-rw-r--r-- | kernel/net/netfilter/ipset/ip_set_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/net/netfilter/ipset/ip_set_core.c b/kernel/net/netfilter/ipset/ip_set_core.c index 2f7df3a..b4c5600 100644 --- a/kernel/net/netfilter/ipset/ip_set_core.c +++ b/kernel/net/netfilter/ipset/ip_set_core.c @@ -617,7 +617,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; |