Skip to content

Commit

Permalink
ip: fix warning in xfrm4_mode_tunnel_input
Browse files Browse the repository at this point in the history
Same problem as IPv6

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
stephen hemminger authored and David S. Miller committed Feb 18, 2013
1 parent 0d4bfa2 commit 9aac22d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion net/ipv4/xfrm4_mode_tunnel.c
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,8 @@ static int xfrm4_mode_tunnel_input(struct xfrm_state *x, struct sk_buff *skb)
for_each_input_rcu(rcv_notify_handlers, handler)
handler->handler(skb);

if (err = skb_unclone(skb, GFP_ATOMIC))
err = skb_unclone(skb, GFP_ATOMIC);
if (err)
goto out;

if (x->props.flags & XFRM_STATE_DECAP_DSCP)
Expand Down

0 comments on commit 9aac22d

Please sign in to comment.