diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2016-07-14 16:47:01 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-07-15 23:16:25 +0200 |
commit | 7acef60455c4814a52afb8629d166a3b4dfa0ebb (patch) | |
tree | 529955a2c99c075f3c8e6940f83ff601aa1cf3bf /net/rxrpc/conn_service.c | |
parent | net: phy: micrel: Add KSZ8041FTL fiber mode support (diff) | |
download | linux-7acef60455c4814a52afb8629d166a3b4dfa0ebb.tar.xz linux-7acef60455c4814a52afb8629d166a3b4dfa0ebb.zip |
rxrpc: checking for IS_ERR() instead of NULL
The rxrpc_lookup_peer() function returns NULL on error, it never returns
error pointers.
Fixes: 8496af50eb38 ('rxrpc: Use RCU to access a peer's service connection tree')
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/rxrpc/conn_service.c')
-rw-r--r-- | net/rxrpc/conn_service.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/rxrpc/conn_service.c b/net/rxrpc/conn_service.c index 7cbd612be0d7..fd9027ccba8f 100644 --- a/net/rxrpc/conn_service.c +++ b/net/rxrpc/conn_service.c @@ -163,7 +163,7 @@ struct rxrpc_connection *rxrpc_incoming_connection(struct rxrpc_local *local, if (!peer) { peer = rxrpc_lookup_peer(local, srx, GFP_NOIO); - if (IS_ERR(peer)) + if (!peer) goto enomem; } |