diff options
| author | Peter Jones <pjones@redhat.com> | 2017-08-31 14:49:11 -0400 |
|---|---|---|
| committer | Peter Jones <pjones@redhat.com> | 2017-08-31 15:13:45 -0400 |
| commit | aaf8049c3995dd2c0c42087a601c262545f36b9c (patch) | |
| tree | 4e6f1c8c5ca3502b9f7a062b071bb5a108491d08 /Cryptlib | |
| parent | 78f6b007e7138df347cb9c527f1ebe01a32cfe3d (diff) | |
| download | efi-boot-shim-aaf8049c3995dd2c0c42087a601c262545f36b9c.tar.gz efi-boot-shim-aaf8049c3995dd2c0c42087a601c262545f36b9c.zip | |
Fix a missing OpenSSL error message point
Signed-off-by: Peter Jones <pjones@redhat.com>
Diffstat (limited to 'Cryptlib')
| -rw-r--r-- | Cryptlib/OpenSSL/crypto/pkcs7/pk7_smime.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Cryptlib/OpenSSL/crypto/pkcs7/pk7_smime.c b/Cryptlib/OpenSSL/crypto/pkcs7/pk7_smime.c index 44187230..5e2107e9 100644 --- a/Cryptlib/OpenSSL/crypto/pkcs7/pk7_smime.c +++ b/Cryptlib/OpenSSL/crypto/pkcs7/pk7_smime.c @@ -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; } } |
