diff options
author | Zheng Yan <zheng.z.yan@intel.com> | 2011-10-28 00:26:00 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-10-28 00:26:00 -0400 |
commit | 504744e4edc24f6f16eed44a59b39bffcc0c1391 (patch) | |
tree | 6a54e48c8fb88cc927f9d146819565a94010a873 | |
parent | 3c20f72f9108b2fcf30ec63d8a4203736c01ccd0 (diff) |
ipv6: fix error propagation in ip6_ufo_append_data()
We should return errcode from sock_alloc_send_skb()
Signed-off-by: Zheng Yan <zheng.z.yan@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | net/ipv6/ip6_output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/ip6_output.c b/net/ipv6/ip6_output.c index ff300474bee7..84d0bd5cac93 100644 --- a/net/ipv6/ip6_output.c +++ b/net/ipv6/ip6_output.c | |||
@@ -1123,7 +1123,7 @@ static inline int ip6_ufo_append_data(struct sock *sk, | |||
1123 | hh_len + fragheaderlen + transhdrlen + 20, | 1123 | hh_len + fragheaderlen + transhdrlen + 20, |
1124 | (flags & MSG_DONTWAIT), &err); | 1124 | (flags & MSG_DONTWAIT), &err); |
1125 | if (skb == NULL) | 1125 | if (skb == NULL) |
1126 | return -ENOMEM; | 1126 | return err; |
1127 | 1127 | ||
1128 | /* reserve space for Hardware header */ | 1128 | /* reserve space for Hardware header */ |
1129 | skb_reserve(skb, hh_len); | 1129 | skb_reserve(skb, hh_len); |