Commit cf619405 authored by Dr. Stephen Henson's avatar Dr. Stephen Henson
Browse files

Fix warnings.

parent dafd5b5d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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++)
		{
+1 −1
Original line number Diff line number Diff line
@@ -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);

+1 −1
Original line number Diff line number Diff line
@@ -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