summaryrefslogtreecommitdiff
path: root/source3/libads/authdata.c
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2005-10-04 11:21:57 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:04:50 -0500
commitebf8a843754ba02f57b38ae01bf143a242132572 (patch)
treed50014a82e3bd51c806322aa8b4ae807083de933 /source3/libads/authdata.c
parent775056f8e494b716276c9f6b1c6130587a8df9ec (diff)
downloadsamba-ebf8a843754ba02f57b38ae01bf143a242132572.tar.gz
samba-ebf8a843754ba02f57b38ae01bf143a242132572.tar.bz2
samba-ebf8a843754ba02f57b38ae01bf143a242132572.zip
r10710: Fix uninitialized variable. (Thanks to Chengjie Liu
<chengjie.liu@datadomain.com>) Guenther (This used to be commit 241466ee650d1db1b89a4b5b640f27f6b83644c6)
Diffstat (limited to 'source3/libads/authdata.c')
-rw-r--r--source3/libads/authdata.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libads/authdata.c b/source3/libads/authdata.c
index d28376c775..9fd30e9dfb 100644
--- a/source3/libads/authdata.c
+++ b/source3/libads/authdata.c
@@ -780,7 +780,7 @@ static void dump_pac_logon_info(PAC_LOGON_INFO *logon_info) {
PAC_SIGNATURE_DATA *kdc_sig = NULL;
PAC_LOGON_NAME *logon_name = NULL;
PAC_LOGON_INFO *logon_info = NULL;
- krb5_principal client_principal_pac;
+ krb5_principal client_principal_pac = NULL;
NTTIME tgs_authtime_nttime;
int i, srv_sig_pos = 0, kdc_sig_pos = 0;
fstring username;