Fix a missing OpenSSL error message point

Signed-off-by: Peter Jones <pjones@redhat.com>
This commit is contained in:
Peter Jones 2017-08-31 14:49:11 -04:00
parent 78f6b007e7
commit aaf8049c39

View File

@ -425,6 +425,7 @@ STACK_OF(X509) *PKCS7_get0_signers(PKCS7 *p7, STACK_OF(X509) *certs,
if (!sk_X509_push(signers, signer)) {
sk_X509_free(signers);
PKCS7err(PKCS7_F_PKCS7_GET0_SIGNERS, ERR_R_MALLOC_FAILURE);
return NULL;
}
}