]> git.baikalelectronics.ru Git - kernel.git/commit
ipv6: fix compiler warning in ipv6_exthdrs_len
authorHannes Frederic Sowa <hannes@stressinduktion.org>
Sat, 14 Dec 2013 06:29:29 +0000 (07:29 +0100)
committerDavid S. Miller <davem@davemloft.net>
Sat, 14 Dec 2013 07:01:27 +0000 (02:01 -0500)
commit10e708adcc12245735ba7c2736e9b0f783038560
tree6b68f1c6b09264ed4378de02749839046a4f6f4f
parentd7beafb51e747735f2186afd14622974e1a219ac
ipv6: fix compiler warning in ipv6_exthdrs_len

Commit 14768ed62325d2bd004d7b43b5de9016ae27e213 ("net-gro: Prepare GRO
stack for the upcoming tunneling support") used an uninitialized variable
which leads to the following compiler warning:

net/ipv6/ip6_offload.c: In function ‘ipv6_gro_complete’:
net/ipv6/ip6_offload.c:178:24: warning: ‘optlen’ may be used uninitialized in this function [-Wmaybe-uninitialized]
    opth = (void *)opth + optlen;
                        ^
net/ipv6/ip6_offload.c:164:22: note: ‘optlen’ was declared here
  int len = 0, proto, optlen;
                      ^
Fix it up.

Cc: Jerry Chu <hkchu@google.com>
Signed-off-by: Hannes Frederic Sowa <hannes@stressinduktion.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv6/ip6_offload.c