From d886975835e7e430aeda6ecb1653363b463bc9cf Mon Sep 17 00:00:00 2001 From: Ben Laurie Date: Sat, 12 Jun 2010 13:18:58 +0000 Subject: Fix gcc 4.6 warnings. Check TLS server hello extension length. --- crypto/hmac/hmac.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'crypto/hmac') diff --git a/crypto/hmac/hmac.c b/crypto/hmac/hmac.c index cbc1c76a57..6899be63d4 100644 --- a/crypto/hmac/hmac.c +++ b/crypto/hmac/hmac.c @@ -130,12 +130,9 @@ void HMAC_Update(HMAC_CTX *ctx, const unsigned char *data, size_t len) void HMAC_Final(HMAC_CTX *ctx, unsigned char *md, unsigned int *len) { - int j; unsigned int i; unsigned char buf[EVP_MAX_MD_SIZE]; - j=EVP_MD_block_size(ctx->md); - EVP_DigestFinal_ex(&ctx->md_ctx,buf,&i); EVP_MD_CTX_copy_ex(&ctx->md_ctx,&ctx->o_ctx); EVP_DigestUpdate(&ctx->md_ctx,buf,i); -- cgit v1.2.3