diff options
author | Simo Sorce <idra@samba.org> | 2010-07-16 17:30:14 -0400 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2010-07-19 14:19:47 +1000 |
commit | cdcdaaa6dd61475b8c0f37ce140a77271175cc9d (patch) | |
tree | 29980a85b199666e2ab72507bd7822e02790fde9 /source3/winbindd | |
parent | 27aece72004a84a6e0b2e00987d8a362e307d1d8 (diff) | |
download | samba-cdcdaaa6dd61475b8c0f37ce140a77271175cc9d.tar.gz samba-cdcdaaa6dd61475b8c0f37ce140a77271175cc9d.tar.bz2 samba-cdcdaaa6dd61475b8c0f37ce140a77271175cc9d.zip |
s3-ntlmssp: Remove ntlmssp_end and let the talloc hierarchy handle it.
All the members are children of ntlmssp_state anyway.
Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source3/winbindd')
-rw-r--r-- | source3/winbindd/winbindd_ccache_access.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/winbindd/winbindd_ccache_access.c b/source3/winbindd/winbindd_ccache_access.c index c5a760af05..6a265ccaf0 100644 --- a/source3/winbindd/winbindd_ccache_access.c +++ b/source3/winbindd/winbindd_ccache_access.c @@ -136,7 +136,7 @@ static NTSTATUS do_ntlm_auth_with_hashes(const char *username, status = NT_STATUS_OK; done: - ntlmssp_end(&ntlmssp_state); + TALLOC_FREE(ntlmssp_state); return status; } |