mirror of
https://git.libssh.org/projects/libssh.git
synced 2025-11-30 13:01:23 +03:00
pki: Fix resource leak on error.
This commit is contained in:
@@ -850,6 +850,7 @@ ssh_string pki_publickey_to_blob(const ssh_key key)
|
|||||||
e = make_ecpoint_string(EC_KEY_get0_group(key->ecdsa),
|
e = make_ecpoint_string(EC_KEY_get0_group(key->ecdsa),
|
||||||
EC_KEY_get0_public_key(key->ecdsa));
|
EC_KEY_get0_public_key(key->ecdsa));
|
||||||
if (e == NULL) {
|
if (e == NULL) {
|
||||||
|
ssh_buffer_free(buffer);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user