aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/udp.c
diff options
context:
space:
mode:
authorYOSHIFUJI Hideaki / 吉藤英明 <yoshfuji@linux-ipv6.org>2013-01-22 01:32:49 -0500
committerDavid S. Miller <davem@davemloft.net>2013-01-22 14:28:28 -0500
commit50c3a487d507568359ccbce1b15bcdfc01edf7ef (patch)
tree78d3978bde268dabbdc92c3ce25ccb3fcf95e4b5 /net/ipv4/udp.c
parent8fbcec241df21d1ba2aba09974ea9017832b69b0 (diff)
ipv4: Use IS_ERR_OR_NULL().
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/udp.c')
-rw-r--r--net/ipv4/udp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/udp.c b/net/ipv4/udp.c
index 79c8dbe59b54..cf6158f1f46b 100644
--- a/net/ipv4/udp.c
+++ b/net/ipv4/udp.c
@@ -971,7 +971,7 @@ back_from_confirm:
971 sizeof(struct udphdr), &ipc, &rt, 971 sizeof(struct udphdr), &ipc, &rt,
972 msg->msg_flags); 972 msg->msg_flags);
973 err = PTR_ERR(skb); 973 err = PTR_ERR(skb);
974 if (skb && !IS_ERR(skb)) 974 if (!IS_ERR_OR_NULL(skb))
975 err = udp_send_skb(skb, fl4); 975 err = udp_send_skb(skb, fl4);
976 goto out; 976 goto out;
977 } 977 }