mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
use the new talloc_reparent in two places
This commit is contained in:
parent
5fe1d8dc12
commit
0534ae012b
@ -839,7 +839,7 @@ NTSTATUS libnet_JoinDomain(struct libnet_context *ctx, TALLOC_CTX *mem_ctx, stru
|
||||
r->out.realm = connect_with_info->out.realm;
|
||||
talloc_steal(mem_ctx, r->out.realm);
|
||||
r->out.samr_pipe = samr_pipe;
|
||||
talloc_steal(mem_ctx, samr_pipe);
|
||||
talloc_reparent(tmp_ctx, mem_ctx, samr_pipe);
|
||||
r->out.samr_binding = samr_pipe->binding;
|
||||
talloc_steal(mem_ctx, r->out.samr_binding);
|
||||
r->out.user_handle = u_handle;
|
||||
|
@ -384,7 +384,7 @@ static void reply_nt1(struct smbsrv_request *req, uint16_t choice)
|
||||
smbsrv_terminate_connection(req->smb_conn, "reply_nt1: is this a secondary negprot? auth_context is non-NULL!\n");
|
||||
return;
|
||||
}
|
||||
req->smb_conn->negotiate.server_credentials = talloc_steal(req->smb_conn, server_credentials);
|
||||
req->smb_conn->negotiate.server_credentials = talloc_reparent(req, req->smb_conn, server_credentials);
|
||||
|
||||
gensec_set_target_service(gensec_security, "cifs");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user