Fix warning.

This commit is contained in:
Ben Laurie 2012-10-04 15:04:26 +00:00
parent 92b2530acd
commit b8719c753e

View File

@ -74,7 +74,7 @@ BIO *cms_EncryptedContent_init_bio(CMS_EncryptedContentInfo *ec)
X509_ALGOR *calg = ec->contentEncryptionAlgorithm; X509_ALGOR *calg = ec->contentEncryptionAlgorithm;
unsigned char iv[EVP_MAX_IV_LENGTH], *piv = NULL; unsigned char iv[EVP_MAX_IV_LENGTH], *piv = NULL;
unsigned char *tkey = NULL; unsigned char *tkey = NULL;
size_t tkeylen; size_t tkeylen = 0;
int ok = 0; int ok = 0;