X509_ACERT_sign_ctx(): Remove superfluous reference

CLA: trivial

Fixes #26107

Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/26120)
This commit is contained in:
ryuishii 2024-12-05 15:48:51 +09:00 committed by Tomas Mraz
parent 34ea176abf
commit 5b33d3e158

View File

@ -204,7 +204,7 @@ int X509_ACERT_sign_ctx(X509_ACERT *x, EVP_MD_CTX *ctx)
{
return ASN1_item_sign_ctx(ASN1_ITEM_rptr(X509_ACERT_INFO),
&x->sig_alg, &x->acinfo->signature, &x->signature,
&x->acinfo, ctx);
x->acinfo, ctx);
}
int NETSCAPE_SPKI_sign(NETSCAPE_SPKI *x, EVP_PKEY *pkey, const EVP_MD *md)