From 5bc5761c06decc6b1fadff5f246c820e1db3fed3 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Thu, 6 Dec 2012 18:13:23 +0100 Subject: s3-auth: Make sure we work on valid data_blobs. Found by Coverity. Signed-off-by: Andreas Schneider Reviewed-by: Guenther Deschner --- source3/auth/auth_util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/auth') diff --git a/source3/auth/auth_util.c b/source3/auth/auth_util.c index b75a390f36..1367186a55 100644 --- a/source3/auth/auth_util.c +++ b/source3/auth/auth_util.c @@ -231,8 +231,8 @@ bool make_user_info_netlogon_interactive(struct auth_usersupplied_info **user_in { bool ret; NTSTATUS nt_status; - DATA_BLOB local_lm_blob; - DATA_BLOB local_nt_blob; + DATA_BLOB local_lm_blob = data_blob_null; + DATA_BLOB local_nt_blob = data_blob_null; if (lm_interactive_pwd) { local_lm_blob = data_blob(local_lm_response, -- cgit