From 5390daefb655d275beab33ace3fe95366eaed207 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sun, 26 Sep 2004 23:38:14 +0000 Subject: r2668: steal the cli pointer into the pipe context so a single free destroys the cli context too (This used to be commit 417d0c0ba182aab3a3a23db76ff7ac7cbc663cb6) --- source4/librpc/rpc/dcerpc_util.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source4/librpc/rpc/dcerpc_util.c b/source4/librpc/rpc/dcerpc_util.c index be83d6bed1..71fe2c63e1 100644 --- a/source4/librpc/rpc/dcerpc_util.c +++ b/source4/librpc/rpc/dcerpc_util.c @@ -487,7 +487,8 @@ static NTSTATUS dcerpc_pipe_connect_ncacn_np(struct dcerpc_pipe **p, /* this ensures that the reference count is decremented so a pipe close will really close the link */ talloc_free(cli->tree); - + talloc_steal(*p, cli); + (*p)->flags = binding->flags; /* remember the binding string for possible secondary connections */ -- cgit