check pw_passwd != NULL here too

Again, for systems with broken NIS implementations.

Prompted by coolbugcheckers AT gmail.com
This commit is contained in:
Damien Miller 2018-10-11 11:29:35 +11:00
Родитель fe8e8f349a
Коммит c29b111e7d
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -198,6 +198,9 @@ sys_auth_passwd(struct ssh *ssh, const char *password)
/* Just use the supplied fake password if authctxt is invalid */
char *pw_password = authctxt->valid ? shadow_pw(pw) : pw->pw_passwd;
if (pw_password == NULL)
return 0;
/* Check for users with no password. */
if (strcmp(pw_password, "") == 0 && strcmp(password, "") == 0)
return (1);