From: Ben Laurie Date: Thu, 10 May 2012 20:29:00 +0000 (+0000) Subject: Fix warning. X-Git-Tag: master-post-reformat~1827 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=5762f7778da56b9502534fd236007b9a1b0244d9;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;