summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2010-03-25 15:17:07 +0100
committerKarolin Seeger <kseeger@samba.org>2010-05-06 14:08:37 +0200
commit1598876fb7003601380ecf3e0e3468ec37be5c85 (patch)
tree73f5c2a0284a85a0e3aed17115868b8b7313d153
parent72d1c1e0d3cf5b0e2486c1eb0309b7e61f3277ea (diff)
downloadsamba-1598876fb7003601380ecf3e0e3468ec37be5c85.tar.gz
s3:winbindd: consistently use TALLOC_FREE(conn->foo_pipe) is we create a new connection
metze (cherry picked from commit 4f391fedac7111683d13f2d79fee7c0dbc27f86e) (cherry picked from commit c462e54142c00fdd81c2847d16a75119b1cc89fc) Signed-off-by: Stefan Metzmacher <metze@samba.org> (cherry picked from commit 4ef6370eaaa307ccfd74012a4b9397312ff747eb)
-rw-r--r--source3/winbindd/winbindd_cm.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/source3/winbindd/winbindd_cm.c b/source3/winbindd/winbindd_cm.c
index d3d2e16c82a..2b45e275add 100644
--- a/source3/winbindd/winbindd_cm.c
+++ b/source3/winbindd/winbindd_cm.c
@@ -2010,6 +2010,7 @@ NTSTATUS cm_connect_sam(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx,
goto done;
}
+ TALLOC_FREE(conn->samr_pipe);
/*
* No SAMR pipe yet. Attempt to get an NTLMSSP SPNEGO authenticated
@@ -2237,6 +2238,8 @@ NTSTATUS cm_connect_lsa(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx,
goto done;
}
+ TALLOC_FREE(conn->lsa_pipe);
+
if ((conn->cli->user_name[0] == '\0') ||
(conn->cli->domain[0] == '\0') ||
(conn->cli->password == NULL || conn->cli->password[0] == '\0')) {
@@ -2369,6 +2372,8 @@ NTSTATUS cm_connect_netlogon(struct winbindd_domain *domain,
return NT_STATUS_OK;
}
+ TALLOC_FREE(conn->netlogon_pipe);
+
result = cli_rpc_pipe_open_noauth(conn->cli,
&ndr_table_netlogon.syntax_id,
&netlogon_pipe);