summaryrefslogtreecommitdiff
path: root/source4/torture/torture.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2017-04-24 14:27:36 -0700
committerJeremy Allison <jra@samba.org>2017-05-05 15:52:11 +0200
commit1d6667381cfe568be2a0731225a6fed332343dc8 (patch)
treedabf3ee18bf7ff3e4c934d10084a2820f0e0579c /source4/torture/torture.c
parent6341d3d59f2cee3478e02eb0a6f6c96f31bda513 (diff)
downloadsamba-1d6667381cfe568be2a0731225a6fed332343dc8.tar.gz
s4: torture: Pass the new talloc context into torture_init().
Signed-off-by: Jeremy Allison <jra@samba.org> Reviewed-by: Ralph Böhme <slow@samba.org>
Diffstat (limited to 'source4/torture/torture.c')
-rw-r--r--source4/torture/torture.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source4/torture/torture.c b/source4/torture/torture.c
index 01089219b87..3ef1f3b49ba 100644
--- a/source4/torture/torture.c
+++ b/source4/torture/torture.c
@@ -44,15 +44,15 @@ bool torture_register_suite(struct torture_suite *suite)
return torture_suite_add_suite(torture_root, suite);
}
-_PUBLIC_ int torture_init(void)
+_PUBLIC_ int torture_init(TALLOC_CTX *mem_ctx)
{
#define _MODULE_PROTO(init) extern NTSTATUS init(TALLOC_CTX *);
STATIC_smbtorture_MODULES_PROTO;
init_module_fn static_init[] = { STATIC_smbtorture_MODULES };
- init_module_fn *shared_init = load_samba_modules(NULL, "smbtorture");
+ init_module_fn *shared_init = load_samba_modules(mem_ctx, "smbtorture");
- run_init_functions(NULL, static_init);
- run_init_functions(NULL, shared_init);
+ run_init_functions(mem_ctx, static_init);
+ run_init_functions(mem_ctx, shared_init);
talloc_free(shared_init);