summaryrefslogtreecommitdiffstats
path: root/source4/libnet/libnet_join.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2009-07-01 14:53:32 +1000
committerAndrew Tridgell <tridge@samba.org>2009-07-01 15:15:37 +1000
commit0534ae012b3ef962f52fef9968eef30e88668874 (patch)
tree13019d8c5082726ba26ef82a524d169a066b1652 /source4/libnet/libnet_join.c
parent5fe1d8dc1275e43d96da1297f5fb0d0088a1c3ab (diff)
downloadsamba-0534ae012b3ef962f52fef9968eef30e88668874.tar.gz
samba-0534ae012b3ef962f52fef9968eef30e88668874.tar.xz
samba-0534ae012b3ef962f52fef9968eef30e88668874.zip
use the new talloc_reparent in two places
Diffstat (limited to 'source4/libnet/libnet_join.c')
-rw-r--r--source4/libnet/libnet_join.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/libnet/libnet_join.c b/source4/libnet/libnet_join.c
index 81578a1a885..d7b80abc55a 100644
--- a/source4/libnet/libnet_join.c
+++ b/source4/libnet/libnet_join.c
@@ -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;