From f261266c9d66d7143a867f4719d1549f58915036 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Tue, 5 Apr 2011 15:57:42 +1000 Subject: s4-auth: Always talloc_zero() the struct auth_session_info --- source4/auth/session.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4') diff --git a/source4/auth/session.c b/source4/auth/session.c index cf5514cbf7..9475104569 100644 --- a/source4/auth/session.c +++ b/source4/auth/session.c @@ -64,7 +64,7 @@ _PUBLIC_ NTSTATUS auth_generate_session_info(TALLOC_CTX *mem_ctx, TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx); NT_STATUS_HAVE_NO_MEMORY(tmp_ctx); - session_info = talloc(tmp_ctx, struct auth_session_info); + session_info = talloc_zero(tmp_ctx, struct auth_session_info); NT_STATUS_HAVE_NO_MEMORY_AND_FREE(session_info, tmp_ctx); session_info->info = talloc_reference(session_info, user_info_dc->info); -- cgit