зеркало из https://github.com/Azure/sonic-openssh.git
- Fixed SEGVs in authloop, fix from vbzoli@hbrt.hu
This commit is contained in:
Родитель
1787252789
Коммит
1852246d30
|
@ -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
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);
|
||||
|
|
Загрузка…
Ссылка в новой задаче