aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMouse <mouse008@gmail.com>2017-10-10 14:02:56 -0400
committerRich Salz <rsalz@openssl.org>2017-10-16 14:46:53 -0400
commite680311770bd480ab6b4e17562c160855178e5ab (patch)
treebaebc2c6938dea851b969b5e6d6a804a0e568dd9
parentbeb30941d6b2d663144d74dc3846d5d49c127454 (diff)
downloadopenssl-e680311770bd480ab6b4e17562c160855178e5ab.tar.gz
Code hygiene; initialize some pointers.
CLA: trivial Reviewed-by: Andy Polyakov <appro@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/4515)
-rw-r--r--crypto/cms/cms_sd.c2
-rw-r--r--crypto/pkcs7/pk7_doit.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/crypto/cms/cms_sd.c b/crypto/cms/cms_sd.c
index a31e8495ca..764781688b 100644
--- a/crypto/cms/cms_sd.c
+++ b/crypto/cms/cms_sd.c
@@ -635,7 +635,7 @@ int cms_SignedData_final(CMS_ContentInfo *cms, BIO *chain)
int CMS_SignerInfo_sign(CMS_SignerInfo *si)
{
EVP_MD_CTX *mctx = si->mctx;
- EVP_PKEY_CTX *pctx;
+ EVP_PKEY_CTX *pctx = NULL;
unsigned char *abuf = NULL;
int alen;
size_t siglen;
diff --git a/crypto/pkcs7/pk7_doit.c b/crypto/pkcs7/pk7_doit.c
index 0ff9e9364e..9883a4f02c 100644
--- a/crypto/pkcs7/pk7_doit.c
+++ b/crypto/pkcs7/pk7_doit.c
@@ -813,7 +813,7 @@ int PKCS7_dataFinal(PKCS7 *p7, BIO *bio)
int PKCS7_SIGNER_INFO_sign(PKCS7_SIGNER_INFO *si)
{
EVP_MD_CTX *mctx;
- EVP_PKEY_CTX *pctx;
+ EVP_PKEY_CTX *pctx = NULL;
unsigned char *abuf = NULL;
int alen;
size_t siglen;