summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2014-02-02 15:50:08 +0100
committerVolker Lendecke <vl@samba.org>2014-02-10 10:57:25 +0100
commit5124a9e1183de990ca3146cd355152094495a779 (patch)
tree9997a4af18f780c1967d66af8e2de2945db0a8b2
parent75d7c4609c1c743f84ca9f2d0666aece9e5200d4 (diff)
downloadsamba-5124a9e1183de990ca3146cd355152094495a779.tar.gz
samba-5124a9e1183de990ca3146cd355152094495a779.tar.xz
samba-5124a9e1183de990ca3146cd355152094495a779.zip
auth4: Do not generate just a temporary wbc_context
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Kai Blin <kai@samba.org>
-rw-r--r--source4/auth/ntlm/auth.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/source4/auth/ntlm/auth.c b/source4/auth/ntlm/auth.c
index a8c257f94a..ccfd20ad05 100644
--- a/source4/auth/ntlm/auth.c
+++ b/source4/auth/ntlm/auth.c
@@ -461,21 +461,12 @@ static NTSTATUS auth_generate_session_info_wrapper(struct auth4_context *auth_co
if ((session_info_flags & AUTH_SESSION_INFO_UNIX_TOKEN)
&& NT_STATUS_IS_OK(status)) {
- struct wbc_context *wbc_ctx = wbc_init(auth_context,
- auth_context->msg_ctx,
- auth_context->event_ctx);
- if (!wbc_ctx) {
- TALLOC_FREE(*session_info);
- DEBUG(1, ("Cannot contact winbind to provide unix token\n"));
- return NT_STATUS_INVALID_SERVER_STATE;
- }
- status = auth_session_info_fill_unix(wbc_ctx->event_ctx,
+ status = auth_session_info_fill_unix(auth_context->event_ctx,
auth_context->lp_ctx,
original_user_name, *session_info);
if (!NT_STATUS_IS_OK(status)) {
TALLOC_FREE(*session_info);
}
- TALLOC_FREE(wbc_ctx);
}
return status;
}