svn commit: samba r14973 - in branches/SAMBA_4_0/source/libcli/raw: .

tridge at samba.org tridge at samba.org
Sat Apr 8 02:33:25 GMT 2006


Author: tridge
Date: 2006-04-08 02:33:24 +0000 (Sat, 08 Apr 2006)
New Revision: 14973

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=14973

Log:

req cannot be NULL in smb_raw_t2open_recv() (found by IBM checker)

Modified:
   branches/SAMBA_4_0/source/libcli/raw/rawfile.c


Changeset:
Modified: branches/SAMBA_4_0/source/libcli/raw/rawfile.c
===================================================================
--- branches/SAMBA_4_0/source/libcli/raw/rawfile.c	2006-04-08 02:29:48 UTC (rev 14972)
+++ branches/SAMBA_4_0/source/libcli/raw/rawfile.c	2006-04-08 02:33:24 UTC (rev 14973)
@@ -396,7 +396,7 @@
 ****************************************************************************/
 static NTSTATUS smb_raw_t2open_recv(struct smbcli_request *req, TALLOC_CTX *mem_ctx, union smb_open *parms)
 {
-	struct smbcli_transport *transport = req?req->transport:NULL;
+	struct smbcli_transport *transport = req->transport;
 	struct smb_trans2 t2;
 	NTSTATUS status;
 



More information about the samba-cvs mailing list