diff options
| author | YOSHIFUJI Hideaki / 吉藤英明 <yoshfuji@linux-ipv6.org> | 2013-01-22 06:32:49 +0000 | 
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2013-01-22 14:28:28 -0500 | 
| commit | 50c3a487d507568359ccbce1b15bcdfc01edf7ef (patch) | |
| tree | 78d3978bde268dabbdc92c3ce25ccb3fcf95e4b5 /net/ipv4/udp.c | |
| parent | 8fbcec241df21d1ba2aba09974ea9017832b69b0 (diff) | |
| download | olio-linux-3.10-50c3a487d507568359ccbce1b15bcdfc01edf7ef.tar.xz olio-linux-3.10-50c3a487d507568359ccbce1b15bcdfc01edf7ef.zip  | |
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.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/udp.c b/net/ipv4/udp.c index 79c8dbe59b5..cf6158f1f46 100644 --- a/net/ipv4/udp.c +++ b/net/ipv4/udp.c @@ -971,7 +971,7 @@ back_from_confirm:  				  sizeof(struct udphdr), &ipc, &rt,  				  msg->msg_flags);  		err = PTR_ERR(skb); -		if (skb && !IS_ERR(skb)) +		if (!IS_ERR_OR_NULL(skb))  			err = udp_send_skb(skb, fl4);  		goto out;  	}  |