summaryrefslogtreecommitdiff
path: root/source4/lib/registry/rpc.c
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2012-07-13 00:16:09 +0200
committerMichael Adam <obnox@samba.org>2012-07-13 00:57:19 +0200
commit6ee16cefc98c8a033664be476be4446599450d23 (patch)
tree36072226ada62ff52b6c91107457432baee25ed2 /source4/lib/registry/rpc.c
parente454681276ffa34984dda56e74d2fda05a24636c (diff)
downloadsamba-6ee16cefc98c8a033664be476be4446599450d23.tar.gz
samba-6ee16cefc98c8a033664be476be4446599450d23.tar.bz2
samba-6ee16cefc98c8a033664be476be4446599450d23.zip
s4:registry: add a TALLOC_CTX argument to reg_open_remote()
Diffstat (limited to 'source4/lib/registry/rpc.c')
-rw-r--r--source4/lib/registry/rpc.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/source4/lib/registry/rpc.c b/source4/lib/registry/rpc.c
index 42b7374f7a..a8f8382ec5 100644
--- a/source4/lib/registry/rpc.c
+++ b/source4/lib/registry/rpc.c
@@ -475,7 +475,8 @@ static struct registry_operations reg_backend_rpc = {
.get_key_info = rpc_get_info,
};
-_PUBLIC_ WERROR reg_open_remote(struct registry_context **ctx,
+_PUBLIC_ WERROR reg_open_remote(TALLOC_CTX *mem_ctx,
+ struct registry_context **ctx,
struct auth_session_info *session_info,
struct cli_credentials *credentials,
struct loadparm_context *lp_ctx,
@@ -487,7 +488,7 @@ _PUBLIC_ WERROR reg_open_remote(struct registry_context **ctx,
dcerpc_init();
- rctx = talloc(NULL, struct rpc_registry_context);
+ rctx = talloc(mem_ctx, struct rpc_registry_context);
W_ERROR_HAVE_NO_MEMORY(rctx);
/* Default to local smbd if no connection is specified */