1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-11-30 13:01:23 +03:00

auth: Fix integer type in ssh_kbdint_clean()

Fixes T188

Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
Reviewed-by: Jakub Jelen <jjelen@redhat.com>
This commit is contained in:
Andreas Schneider
2019-10-31 10:30:14 +01:00
parent 8d62257172
commit 1434b4a279

View File

@@ -1369,7 +1369,7 @@ void ssh_kbdint_free(ssh_kbdint kbd) {
}
void ssh_kbdint_clean(ssh_kbdint kbd) {
int i, n;
size_t i, n;
if (kbd == NULL) {
return;