diff options
author | Damien Miller <djm@mindrot.org> | 2012-04-26 01:51:26 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2012-04-26 01:51:26 +0200 |
commit | 7584cb1ac4daafbfb3dec592dd7ef48b81d20eea (patch) | |
tree | b758ad859d530f5b4e22d3c7dce55465d8c6b090 /auth-passwd.c | |
parent | - djm@cvs.openbsd.org 2012/04/23 08:18:17 (diff) | |
download | openssh-7584cb1ac4daafbfb3dec592dd7ef48b81d20eea.tar.xz openssh-7584cb1ac4daafbfb3dec592dd7ef48b81d20eea.zip |
- (djm) [auth-passwd.c] Handle crypt() returning NULL; from Paul Wouters
via Niels
Diffstat (limited to 'auth-passwd.c')
-rw-r--r-- | auth-passwd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/auth-passwd.c b/auth-passwd.c index b1c6ce092..68bbd18dd 100644 --- a/auth-passwd.c +++ b/auth-passwd.c @@ -209,6 +209,7 @@ sys_auth_passwd(Authctxt *authctxt, const char *password) * Authentication is accepted if the encrypted passwords * are identical. */ - return (strcmp(encrypted_password, pw_password) == 0); + return encrypted_password != NULL && + strcmp(encrypted_password, pw_password) == 0; } #endif |