aboutsummaryrefslogtreecommitdiff
path: root/libssh/wrapper.c
diff options
context:
space:
mode:
authorAndreas Schneider <mail@cynapses.org>2009-09-03 17:22:34 +0200
committerAndreas Schneider <mail@cynapses.org>2009-09-03 17:22:34 +0200
commitdf4f7ed5b8ec4619c3435b9b3dc8efc6210f4447 (patch)
tree13f07c448119a8e6c97bd4cdf479efe6f9b37e88 /libssh/wrapper.c
parent0792c015d63bc085e18b53248e05390e899a4290 (diff)
downloadlibssh-df4f7ed5b8ec4619c3435b9b3dc8efc6210f4447.tar.gz
libssh-df4f7ed5b8ec4619c3435b9b3dc8efc6210f4447.tar.xz
libssh-df4f7ed5b8ec4619c3435b9b3dc8efc6210f4447.zip
Fix the free calls and use the safe free macro.
Diffstat (limited to 'libssh/wrapper.c')
-rw-r--r--libssh/wrapper.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/libssh/wrapper.c b/libssh/wrapper.c
index 1eac8e74..99815497 100644
--- a/libssh/wrapper.c
+++ b/libssh/wrapper.c
@@ -968,8 +968,8 @@ int crypt_set_algorithms_server(SSH_SESSION *session){
ssh_log(session,SSH_LOG_PACKET,"enabling C->S compression");
session->next_crypto->do_compress_in=1;
}
- free(match);
-
+ SAFE_FREE(match);
+
client=session->client_kex.methods[SSH_CRYPT_S_C];
server=session->server_kex.methods[SSH_CRYPT_S_C];
match=ssh_find_matching(client,server);
@@ -977,8 +977,8 @@ int crypt_set_algorithms_server(SSH_SESSION *session){
ssh_log(session,SSH_LOG_PACKET,"enabling S->C compression\n");
session->next_crypto->do_compress_out=1;
}
- free(match);
-
+ SAFE_FREE(match);
+
server=session->server_kex.methods[SSH_HOSTKEYS];
client=session->client_kex.methods[SSH_HOSTKEYS];
match=ssh_find_matching(client,server);
@@ -989,11 +989,11 @@ int crypt_set_algorithms_server(SSH_SESSION *session){
else {
ssh_set_error(session, SSH_FATAL, "Cannot know what %s is into %s",
match ? match : NULL, server);
- free(match);
+ SAFE_FREE(match);
leave_function();
return SSH_ERROR;
}
- free(match);
+ SAFE_FREE(match);
leave_function();
return SSH_OK;
}