mirror of
https://git.libssh.org/projects/libssh.git
synced 2025-11-30 13:01:23 +03:00
Fix double free in ssh_packet_userauth_request
This commit is contained in:
@@ -602,7 +602,6 @@ SSH_PACKET_CALLBACK(ssh_packet_userauth_request){
|
|||||||
rc = ssh_pki_import_signature_blob(sig_blob,
|
rc = ssh_pki_import_signature_blob(sig_blob,
|
||||||
msg->auth_request.pubkey,
|
msg->auth_request.pubkey,
|
||||||
&sig);
|
&sig);
|
||||||
ssh_string_free(sig_blob);
|
|
||||||
if (rc < 0) {
|
if (rc < 0) {
|
||||||
ssh_log(session, SSH_LOG_PACKET, "Wrong signature from peer");
|
ssh_log(session, SSH_LOG_PACKET, "Wrong signature from peer");
|
||||||
msg->auth_request.signature_state = SSH_PUBLICKEY_STATE_WRONG;
|
msg->auth_request.signature_state = SSH_PUBLICKEY_STATE_WRONG;
|
||||||
|
|||||||
Reference in New Issue
Block a user