Fix warnings.

This commit is contained in:
Dr. Stephen Henson 2011-10-12 13:06:45 +00:00
parent dafd5b5d74
commit cf61940534
3 changed files with 3 additions and 3 deletions

View File

@ -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++)
{

View File

@ -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);

View File

@ -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