1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-27 03:21:53 +03:00

Zero out these pstrings before we start: makes for much easier debugging.

(This used to be commit d417b6b5cb)
This commit is contained in:
Andrew Bartlett 2001-09-23 22:51:27 +00:00
parent 4eb7ef6b61
commit 5993238b0e

View File

@ -499,8 +499,8 @@ int reply_sesssetup_and_X(connection_struct *conn, char *inbuf,char *outbuf,int
BOOL doencrypt = lp_encrypted_passwords();
START_PROFILE(SMBsesssetupX);
*smb_apasswd = 0;
*smb_ntpasswd = 0;
ZERO_STRUCT(smb_apasswd);
ZERO_STRUCT(smb_ntpasswd);
smb_bufsize = SVAL(inbuf,smb_vwv2);