mirror of
https://github.com/openssl/openssl.git
synced 2025-03-31 20:10:45 +08:00
EVP_PKEY_derive_set_peer_ex(): Don't free peer on error
In EVP_PKEY_derive_set_peer_ex, don't free peer on error. Revert to existing functionality. Bug was introduced with https://github.com/openssl/openssl/pull/26294 Reviewed-by: Neil Horman <nhorman@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/26823)
This commit is contained in:
parent
87b5aa737d
commit
b4fab70bfb
@ -494,20 +494,15 @@ int EVP_PKEY_derive_set_peer_ex(EVP_PKEY_CTX *ctx, EVP_PKEY *peer,
|
||||
return -1;
|
||||
}
|
||||
|
||||
ret = ctx->pmeth->ctrl(ctx, EVP_PKEY_CTRL_PEER_KEY, 1, peer);
|
||||
if (ret <= 0)
|
||||
return ret;
|
||||
if (!EVP_PKEY_up_ref(peer))
|
||||
return -1;
|
||||
|
||||
EVP_PKEY_free(ctx->peerkey);
|
||||
ctx->peerkey = peer;
|
||||
|
||||
ret = ctx->pmeth->ctrl(ctx, EVP_PKEY_CTRL_PEER_KEY, 1, peer);
|
||||
|
||||
if (ret <= 0) {
|
||||
EVP_PKEY_free(ctx->peerkey);
|
||||
ctx->peerkey = NULL;
|
||||
return ret;
|
||||
}
|
||||
|
||||
return 1;
|
||||
#endif
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user