Fix the free calls and use the safe free macro.

This commit is contained in:
Andreas Schneider
2009-09-03 17:22:34 +02:00
parent 0792c015d6
commit df4f7ed5b8

View File

@@ -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;
}