From 9a415b723c0e015d7953f8341dd35f8dd7a6fc9c Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sun, 3 Oct 2004 07:32:40 +0000 Subject: r2798: get rid of a unnecessary static (This used to be commit c3dfa7e8287811b4f54d58b45f5093521886b17e) --- source4/auth/auth_util.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'source4/auth') diff --git a/source4/auth/auth_util.c b/source4/auth/auth_util.c index 652c157c7a..c8bad6128c 100644 --- a/source4/auth/auth_util.c +++ b/source4/auth/auth_util.c @@ -440,7 +440,6 @@ NTSTATUS make_server_info(const TALLOC_CTX *mem_ctx, NTSTATUS make_server_info_guest(const TALLOC_CTX *mem_ctx, struct auth_serversupplied_info **server_info) { NTSTATUS nt_status; - static const char zeros[16]; nt_status = make_server_info(mem_ctx, server_info, ""); @@ -457,8 +456,11 @@ NTSTATUS make_server_info_guest(const TALLOC_CTX *mem_ctx, struct auth_serversup /* annoying, but the Guest really does have a session key, and it is all zeros! */ - (*server_info)->user_session_key = data_blob(zeros, sizeof(zeros)); - (*server_info)->lm_session_key = data_blob(zeros, sizeof(zeros)); + (*server_info)->user_session_key = data_blob_talloc(*server_info, NULL, 16); + (*server_info)->lm_session_key = data_blob_talloc(*server_info, NULL, 16); + + data_blob_clear(&(*server_info)->user_session_key); + data_blob_clear(&(*server_info)->lm_session_key); (*server_info)->account_name = ""; (*server_info)->domain = ""; -- cgit