RT3140: Possibly-unit variable in pem_lib.c

Can't really happen, but the flow of control isn't obvious.
Add an initializer.

Reviewed-by: Matt Caswell <matt@openssl.org>
This commit is contained in:
Clang via Jeffrey Walton 2014-09-02 17:04:53 -04:00 committed by Rich Salz
parent 86f50b36e6
commit 0ff3687eab

View File

@ -443,7 +443,7 @@ err:
int PEM_do_header(EVP_CIPHER_INFO *cipher, unsigned char *data, long *plen,
pem_password_cb *callback,void *u)
{
int i,j,o,klen;
int i=0,j,o,klen;
long len;
EVP_CIPHER_CTX ctx;
unsigned char key[EVP_MAX_KEY_LENGTH];