Reviewed-by: Matt Caswell <matt@openssl.org>
This commit is contained in:
Dr. Stephen Henson 2015-09-22 13:00:03 +01:00
parent 40ffdc9cfa
commit 75ef61d705
2 changed files with 4 additions and 4 deletions

View file

@ -318,9 +318,9 @@ X509_NAME *X509_REQ_get_subject_name(X509_REQ *req)
void X509_REQ_get0_signature(ASN1_BIT_STRING **psig, X509_ALGOR **palg,
X509_REQ *req)
{
if (psig == NULL)
if (psig != NULL)
*psig = req->signature;
if (palg == NULL)
if (palg != NULL)
*palg = &req->sig_alg;
}

View file

@ -166,9 +166,9 @@ STACK_OF(X509_REVOKED) *X509_CRL_get_REVOKED(X509_CRL *crl)
void X509_CRL_get0_signature(ASN1_BIT_STRING **psig, X509_ALGOR **palg,
X509_CRL *crl)
{
if (psig == NULL)
if (psig != NULL)
*psig = crl->signature;
if (palg == NULL)
if (palg != NULL)
*palg = &crl->sig_alg;
}