aboutsummaryrefslogtreecommitdiff
path: root/libssh
diff options
context:
space:
mode:
Diffstat (limited to 'libssh')
-rw-r--r--libssh/keyfiles.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libssh/keyfiles.c b/libssh/keyfiles.c
index 40c60304..70abbe1f 100644
--- a/libssh/keyfiles.c
+++ b/libssh/keyfiles.c
@@ -1086,6 +1086,7 @@ int ssh_try_publickey_from_file(ssh_session session, const char *keyfile,
if (!ssh_file_readaccess_ok(pubkey_file)) {
ssh_log(session, SSH_LOG_PACKET, "Failed to open publickey %s",
pubkey_file);
+ SAFE_FREE(pubkey_file);
return 1;
}
@@ -1101,9 +1102,12 @@ int ssh_try_publickey_from_file(ssh_session session, const char *keyfile,
"Wasn't able to open public key file %s: %s",
pubkey_file,
ssh_get_error(session));
+ SAFE_FREE(pubkey_file);
return -1;
}
+ SAFE_FREE(pubkey_file);
+
*publickey = pubkey_string;
*type = pubkey_type;