diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2015-02-11 05:23:38 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-02-11 17:40:15 -0500 |
commit | 13101602c4a9f653d59af9469040797bc5b361ca (patch) | |
tree | ec695245bf7ef9bf35029cb1d805fdd062ec8ef0 /net | |
parent | b35725a285768d85b5ba1be7fe5002654a65ce88 (diff) |
openvswitch: Add missing initialization in validate_and_copy_set_tun()
net/openvswitch/flow_netlink.c: In function ‘validate_and_copy_set_tun’:
net/openvswitch/flow_netlink.c:1749: warning: ‘err’ may be used uninitialized in this function
If ipv4_tun_from_nlattr() returns a different positive value than
OVS_TUNNEL_KEY_ATTR_GENEVE_OPTS, err will be uninitialized, and
validate_and_copy_set_tun() may return an undefined value instead of a
zero success indicator. Initialize err to zero to fix this.
Fixes: 1dd144cf5b4b47e1 ("openvswitch: Support VXLAN Group Policy extension")
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Acked-by: Thomas Graf <tgraf@suug.ch>
Acked-by: Pravin B Shelar <pshelar@nicira.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/openvswitch/flow_netlink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/openvswitch/flow_netlink.c b/net/openvswitch/flow_netlink.c index 993281e6278d..3829328c5a76 100644 --- a/net/openvswitch/flow_netlink.c +++ b/net/openvswitch/flow_netlink.c | |||
@@ -1746,7 +1746,7 @@ static int validate_and_copy_set_tun(const struct nlattr *attr, | |||
1746 | struct sw_flow_key key; | 1746 | struct sw_flow_key key; |
1747 | struct ovs_tunnel_info *tun_info; | 1747 | struct ovs_tunnel_info *tun_info; |
1748 | struct nlattr *a; | 1748 | struct nlattr *a; |
1749 | int err, start, opts_type; | 1749 | int err = 0, start, opts_type; |
1750 | 1750 | ||
1751 | ovs_match_init(&match, &key, NULL); | 1751 | ovs_match_init(&match, &key, NULL); |
1752 | opts_type = ipv4_tun_from_nlattr(nla_data(attr), &match, false, log); | 1752 | opts_type = ipv4_tun_from_nlattr(nla_data(attr), &match, false, log); |