1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-29 21:47:30 +03:00

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

This commit is contained in:
Andrew Tridgell 2006-04-08 02:33:24 +00:00 committed by Gerald (Jerry) Carter
parent 9b867d2acf
commit c2cde823ee

View File

@ -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;