diff options
author | Andrew Tridgell <tridge@samba.org> | 2006-04-08 02:33:24 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:00:48 -0500 |
commit | 7789fa412d3dcb70ed06fdccbda65f2a3eef06ee (patch) | |
tree | bfff2473e3920b29a5a0ec5edca94210cfeeb60d /source4/libcli/raw | |
parent | 4b6cec88ae28952095298fb4b4f720e29b37699b (diff) | |
download | samba-7789fa412d3dcb70ed06fdccbda65f2a3eef06ee.tar.gz |
r14973: req cannot be NULL in smb_raw_t2open_recv() (found by IBM checker)
(This used to be commit c2cde823ee004b53707acd1390d25fa9856b5179)
Diffstat (limited to 'source4/libcli/raw')
-rw-r--r-- | source4/libcli/raw/rawfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/libcli/raw/rawfile.c b/source4/libcli/raw/rawfile.c index d889b500fb0..2873011aa27 100644 --- a/source4/libcli/raw/rawfile.c +++ b/source4/libcli/raw/rawfile.c @@ -396,7 +396,7 @@ static struct smbcli_request *smb_raw_t2open_send(struct smbcli_tree *tree, ****************************************************************************/ 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; |