From: Ben Laurie Date: Thu, 4 Oct 2012 15:04:26 +0000 (+0000) Subject: Fix warning. X-Git-Tag: OpenSSL_1_0_0k~42 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=b8719c753e8b5d6bd078162dfec3f20e17e2c801;p=oweals%2Fopenssl.git Fix warning. --- diff --git a/crypto/cms/cms_enc.c b/crypto/cms/cms_enc.c index f873ce3794..bebeaf29c7 100644 --- a/crypto/cms/cms_enc.c +++ b/crypto/cms/cms_enc.c @@ -74,7 +74,7 @@ BIO *cms_EncryptedContent_init_bio(CMS_EncryptedContentInfo *ec) X509_ALGOR *calg = ec->contentEncryptionAlgorithm; unsigned char iv[EVP_MAX_IV_LENGTH], *piv = NULL; unsigned char *tkey = NULL; - size_t tkeylen; + size_t tkeylen = 0; int ok = 0;