From a5e8ba3c76c8a340d29299d43529ea9fef2dad59 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Thu, 1 May 2003 18:11:59 +0000 Subject: Fix uninitialized blobs reported by Luke Howard. Jeremy. (This used to be commit e954ca2ce8ec6b36794585c3bc948140cf9e7947) --- source3/smbd/sesssetup.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'source3') diff --git a/source3/smbd/sesssetup.c b/source3/smbd/sesssetup.c index 3fa3fa411f..a9842424a5 100644 --- a/source3/smbd/sesssetup.c +++ b/source3/smbd/sesssetup.c @@ -153,6 +153,12 @@ static int reply_spnego_kerberos(connection_struct *conn, uint8 tok_id[2]; BOOL foreign = False; + ZERO_STRUCT(ticket); + ZERO_STRUCT(auth_data); + ZERO_STRUCT(ap_rep); + ZERO_STRUCT(ap_rep_wrapped); + ZERO_STRUCT(response); + if (!spnego_parse_krb5_wrap(*secblob, &ticket, tok_id)) { return ERROR_NT(NT_STATUS_LOGON_FAILURE); } -- cgit