This commit is contained in:
Damien Miller 2000-02-03 01:07:07 +11:00
Родитель 1787252789
Коммит 1852246d30
2 изменённых файлов: 6 добавлений и 1 удалений

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

@ -1,3 +1,6 @@
20000203
- Fixed SEGVs in authloop, fix from vbzoli@hbrt.hu
20000202
- Fix lastlog code for directory based lastlogs. Fix from Josh Durham
<jmd@aoe.vt.edu>

4
sshd.c
Просмотреть файл

@ -1524,8 +1524,10 @@ do_authloop(struct passwd * pw)
return;
}
if (client_user != NULL)
if (client_user != NULL) {
xfree(client_user);
client_user = NULL;
}
if (attempt > AUTH_FAIL_MAX)
packet_disconnect(AUTH_FAIL_MSG, pw->pw_name);