mirror of
https://github.com/openssl/openssl.git
synced 2024-11-27 05:21:51 +08:00
Fix warnings.
This commit is contained in:
parent
dafd5b5d74
commit
cf61940534
@ -115,7 +115,7 @@ int FIPS_selftest_cmac()
|
||||
const EVP_CIPHER *cipher;
|
||||
CMAC_CTX *ctx = CMAC_CTX_new();
|
||||
const CMAC_KAT *t;
|
||||
int subid, rv = 1;
|
||||
int subid = -1, rv = 1;
|
||||
|
||||
for(n=0,t=vector; n<sizeof(vector)/sizeof(vector[0]); n++,t++)
|
||||
{
|
||||
|
@ -120,7 +120,7 @@ int FIPS_selftest_hmac()
|
||||
unsigned char out[EVP_MAX_MD_SIZE];
|
||||
const EVP_MD *md;
|
||||
const HMAC_KAT *t;
|
||||
int rv = 1, subid;
|
||||
int rv = 1, subid = -1;
|
||||
HMAC_CTX c;
|
||||
HMAC_CTX_init(&c);
|
||||
|
||||
|
@ -274,7 +274,7 @@ static int drbg_reseed(DRBG_CTX *dctx,
|
||||
const unsigned char *adin, size_t adinlen, int hcheck)
|
||||
{
|
||||
unsigned char *entropy = NULL;
|
||||
size_t entlen;
|
||||
size_t entlen = 0;
|
||||
int r = 0;
|
||||
|
||||
#if 0
|
||||
|
Loading…
Reference in New Issue
Block a user