drivers/net/vxlan.c: In function ‘vxlan_xmit_one’:
drivers/net/vxlan.c:2141:10: warning: ‘err’ may be used uninitialized in this function [-Wmaybe-uninitialized]
Signed-off-by: David S. Miller <davem@davemloft.net>
dst->sin.sin_addr.s_addr,
&src->sin.sin_addr.s_addr,
dst_cache, info);
- if (IS_ERR(rt))
+ if (IS_ERR(rt)) {
+ err = PTR_ERR(rt);
goto tx_error;
+ }
/* Bypass encapsulation if the destination is local */
if (!info) {
&src->sin6.sin6_addr,
dst_cache, info);
if (IS_ERR(ndst)) {
+ err = PTR_ERR(ndst);
ndst = NULL;
goto tx_error;
}