зеркало из https://github.com/Azure/sonic-openssh.git
check pw_passwd != NULL here too
Again, for systems with broken NIS implementations. Prompted by coolbugcheckers AT gmail.com
This commit is contained in:
Родитель
fe8e8f349a
Коммит
c29b111e7d
|
@ -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);
|
||||
|
|
Загрузка…
Ссылка в новой задаче