1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-04 08:22:08 +03:00

Greg Dickie: spotted bug where smb_nt_passwd could be NULL.

This commit is contained in:
Luke Leighton
-
parent b0381bb262
commit d8946f1cc7

View File

@ -528,8 +528,15 @@ static uint32 net_login_interactive(NET_ID_INFO_1 *id1,
dump_data(100, nt_pwd, 16);
#endif
if (smb_pass->smb_nt_passwd == NULL)
{
DEBUG(5,("warning: NETLOGON user %s only has an LM password\n",
smb_pass->unix_name));
}
if (memcmp(smb_pass->smb_passwd , lm_pwd, 16) != 0 &&
memcmp(smb_pass->smb_nt_passwd, nt_pwd, 16) != 0)
(smb_pass->smb_nt_passwd == NULL ||
memcmp(smb_pass->smb_nt_passwd, nt_pwd, 16) != 0))
{
status = 0xC0000000 | NT_STATUS_WRONG_PASSWORD;
}