Commit 899b0e04 authored by Hideaki Yoshifuji's avatar Hideaki Yoshifuji

[IPV6] handle return value from ip6_push_pending_frames().

parent 86cda021
...@@ -485,7 +485,7 @@ static int rawv6_push_pending_frames(struct sock *sk, struct flowi *fl, struct r ...@@ -485,7 +485,7 @@ static int rawv6_push_pending_frames(struct sock *sk, struct flowi *fl, struct r
} }
if (*csum == 0) if (*csum == 0)
*csum = -1; *csum = -1;
ip6_push_pending_frames(sk); err = ip6_push_pending_frames(sk);
out: out:
return err; return err;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment