summaryrefslogtreecommitdiffstats
path: root/crypto/pkcs7/pk7_lib.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2006-05-24 13:29:32 +0000
committerDr. Stephen Henson <steve@openssl.org>2006-05-24 13:29:32 +0000
commit0e3453536ec9ce09e4dd276c2fa4d62e362789e9 (patch)
tree38862e1ac0b36c186a5585ff2d20e66ede7265e9 /crypto/pkcs7/pk7_lib.c
parenteaff5a1412011574860a74ff9076838ea1e59dd0 (diff)
Fix warnings.
Diffstat (limited to 'crypto/pkcs7/pk7_lib.c')
-rw-r--r--crypto/pkcs7/pk7_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/pkcs7/pk7_lib.c b/crypto/pkcs7/pk7_lib.c
index 92d033fe02..21738eebe2 100644
--- a/crypto/pkcs7/pk7_lib.c
+++ b/crypto/pkcs7/pk7_lib.c
@@ -388,7 +388,7 @@ err:
PKCS7_SIGNER_INFO *PKCS7_add_signature(PKCS7 *p7, X509 *x509, EVP_PKEY *pkey,
const EVP_MD *dgst)
{
- PKCS7_SIGNER_INFO *si;
+ PKCS7_SIGNER_INFO *si = NULL;
if (dgst == NULL)
{