From 15a3afbd192cb8c8e4a248aec8f98141af41b8c1 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sat, 25 Sep 2010 14:47:31 -0700 Subject: s3: Remove talloc_autofree_context() from init_system_info() --- source3/auth/auth_util.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source3/auth/auth_util.c b/source3/auth/auth_util.c index 825452026e..287d9632a9 100644 --- a/source3/auth/auth_util.c +++ b/source3/auth/auth_util.c @@ -911,7 +911,8 @@ bool init_system_info(void) if (system_info != NULL) return True; - return NT_STATUS_IS_OK(make_new_server_info_system(talloc_autofree_context(), &system_info)); + return NT_STATUS_IS_OK(make_new_server_info_system(NULL, + &system_info)); } NTSTATUS make_server_info_system(TALLOC_CTX *mem_ctx, -- cgit