diff options
author | Jeremy Allison <jra@samba.org> | 2007-03-21 01:32:01 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:18:47 -0500 |
commit | 9874b3bfa7f7e7de0e389ea84dbff4a824520bc2 (patch) | |
tree | 6564276b99a65cc8c7da251c90b34c1c2a0d79f3 | |
parent | 7ae9e6aff54f9c22b20432ff8a4996dc6a6b5a36 (diff) | |
download | samba-9874b3bfa7f7e7de0e389ea84dbff4a824520bc2.tar.gz samba-9874b3bfa7f7e7de0e389ea84dbff4a824520bc2.tar.bz2 samba-9874b3bfa7f7e7de0e389ea84dbff4a824520bc2.zip |
r21902: Don't free the thing you're trying to set in the cli state.
Jeremy.
(This used to be commit 1639366561bd63d7023c54f811e2f87dcbbd0a31)
-rw-r--r-- | source3/libsmb/clifsinfo.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/libsmb/clifsinfo.c b/source3/libsmb/clifsinfo.c index 0bd1e124ea..8e994dd67b 100644 --- a/source3/libsmb/clifsinfo.c +++ b/source3/libsmb/clifsinfo.c @@ -409,6 +409,7 @@ NTSTATUS cli_raw_ntlm_smb_encryption_start(struct cli_state *cli, } cli->trans_enc_state = es; cli->trans_enc_state->enc_on = True; + es = NULL; } fail: |