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:
parent
86f50b36e6
commit
0ff3687eab
@ -443,7 +443,7 @@ err:
|
|||||||
int PEM_do_header(EVP_CIPHER_INFO *cipher, unsigned char *data, long *plen,
|
int PEM_do_header(EVP_CIPHER_INFO *cipher, unsigned char *data, long *plen,
|
||||||
pem_password_cb *callback,void *u)
|
pem_password_cb *callback,void *u)
|
||||||
{
|
{
|
||||||
int i,j,o,klen;
|
int i=0,j,o,klen;
|
||||||
long len;
|
long len;
|
||||||
EVP_CIPHER_CTX ctx;
|
EVP_CIPHER_CTX ctx;
|
||||||
unsigned char key[EVP_MAX_KEY_LENGTH];
|
unsigned char key[EVP_MAX_KEY_LENGTH];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user