diff options
author | Adrian Bunk <bunk@stusta.de> | 2007-06-15 15:15:43 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2007-06-15 15:15:43 -0700 |
commit | 16c61add51f2182140637c924687a2aab6b568f9 (patch) | |
tree | afe610507b9a06f196a7112861d6f2c83d25dc10 /net | |
parent | 7769f4064cd9f4fbae09f071578a051aae83e844 (diff) |
[RXRPC] net/rxrpc/ar-connection.c: fix NULL dereference
This patch fixes a NULL dereference spotted by the Coverity checker.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/rxrpc/ar-connection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/rxrpc/ar-connection.c b/net/rxrpc/ar-connection.c index 43cb3e051ece..482750efc235 100644 --- a/net/rxrpc/ar-connection.c +++ b/net/rxrpc/ar-connection.c @@ -211,7 +211,7 @@ static struct rxrpc_connection *rxrpc_alloc_connection(gfp_t gfp) conn->header_size = sizeof(struct rxrpc_header); } - _leave(" = %p{%d}", conn, conn->debug_id); + _leave(" = %p{%d}", conn, conn ? conn->debug_id : 0); return conn; } |