diff options
author | Adrian Bunk <bunk@stusta.de> | 2007-06-15 18:15:43 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2007-06-15 18:15:43 -0400 |
commit | 16c61add51f2182140637c924687a2aab6b568f9 (patch) | |
tree | afe610507b9a06f196a7112861d6f2c83d25dc10 /net/rxrpc | |
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/rxrpc')
-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) | |||
211 | conn->header_size = sizeof(struct rxrpc_header); | 211 | conn->header_size = sizeof(struct rxrpc_header); |
212 | } | 212 | } |
213 | 213 | ||
214 | _leave(" = %p{%d}", conn, conn->debug_id); | 214 | _leave(" = %p{%d}", conn, conn ? conn->debug_id : 0); |
215 | return conn; | 215 | return conn; |
216 | } | 216 | } |
217 | 217 | ||