public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [2.6 patch] fs/smbfs/request.c: fix NULL dereference
@ 2005-03-25  0:15 Adrian Bunk
  2005-03-26  9:02 ` Jean Delvare
  0 siblings, 1 reply; 6+ messages in thread
From: Adrian Bunk @ 2005-03-25  0:15 UTC (permalink / raw)
  To: urban; +Cc: samba, linux-kernel

The Coverity checker found that if req was NULL because find_request 
returned NULL, this resulted in a break from the switch, but req was 
later dereferenced (look at the last line of this patch).

Signed-off-by: Adrian Bunk <bunk@stusta.de>

--- linux-2.6.12-rc1-mm2-full/fs/smbfs/request.c.old	2005-03-25 00:45:08.000000000 +0100
+++ linux-2.6.12-rc1-mm2-full/fs/smbfs/request.c	2005-03-25 00:47:14.000000000 +0100
@@ -783,20 +783,23 @@ int smb_request_recv(struct smb_sb_info 
 			break;
 		break;
 
 		/* We should never be called with any of these states */
 	case SMB_RECV_END:
 	case SMB_RECV_REQUEST:
 		server->rstate = SMB_RECV_END;
 		break;
 	}
 
+	if (!req)
+		return -ENOMEM;
+
 	if (result < 0) {
 		/* We saw an error */
 		return result;
 	}
 
 	if (server->rstate != SMB_RECV_END)
 		return 0;
 
 	result = 0;
 	if (req->rq_trans2_command && req->rq_rcls == SUCCESS)


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2005-04-09  8:47 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-03-25  0:15 [2.6 patch] fs/smbfs/request.c: fix NULL dereference Adrian Bunk
2005-03-26  9:02 ` Jean Delvare
2005-03-26 12:53   ` [2.6 patch] fs/smbfs/request.c: turn NULL dereference into BUG() Adrian Bunk
2005-03-26 13:11     ` Adrian Bunk
2005-03-26 18:16       ` Jean Delvare
2005-04-09  8:47       ` Jean Delvare

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox