summaryrefslogtreecommitdiff
path: root/source4/auth/auth_server.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2004-09-26 05:38:45 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:59:16 -0500
commitdf6dce1065d4323ebf8ca97b69f0a44804f19e11 (patch)
tree6088ff1c986dc5078d94fa2cf1129f82367dbad4 /source4/auth/auth_server.c
parentec0128ef012f4280b2fb607cb9c88c7673894fe6 (diff)
downloadsamba-df6dce1065d4323ebf8ca97b69f0a44804f19e11.tar.gz
samba-df6dce1065d4323ebf8ca97b69f0a44804f19e11.tar.bz2
samba-df6dce1065d4323ebf8ca97b69f0a44804f19e11.zip
r2650: fixed a memory leak in make_server_info()
(This used to be commit 4aba6e7101041100f7d400abd5e7144b95528fc3)
Diffstat (limited to 'source4/auth/auth_server.c')
-rw-r--r--source4/auth/auth_server.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/auth/auth_server.c b/source4/auth/auth_server.c
index be272e625c..d0c4bfc902 100644
--- a/source4/auth/auth_server.c
+++ b/source4/auth/auth_server.c
@@ -354,7 +354,7 @@ use this machine as the password server.\n"));
if NT_STATUS_IS_OK(nt_status) {
struct passwd *pass = Get_Pwnam(user_info->internal_username.str);
if (pass) {
- nt_status = make_server_info_pw(server_info, pass);
+ nt_status = make_server_info_pw(auth_context, server_info, pass);
} else {
nt_status = NT_STATUS_NO_SUCH_USER;
}