From ae7ec4802a81770ff164e465b8d1fb51624ca093 Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Sun, 7 Feb 2016 02:07:38 +0100 Subject: Windows:Fix various issues and warnings reported by static code analysis tool Coverity. --- src/Crypto/Whirlpool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Crypto') diff --git a/src/Crypto/Whirlpool.c b/src/Crypto/Whirlpool.c index bfc627f3..d8442cd1 100644 --- a/src/Crypto/Whirlpool.c +++ b/src/Crypto/Whirlpool.c @@ -568,6 +568,7 @@ void WhirlpoolTransform(uint64 *digest, const uint64 *block) uint64 s[8]; // the cipher state uint64 k[8]; // the round key int r; + uint64 w0 = 0, w1 = 0, w2 = 0, w3 = 0, w4 = 0, w5 = 0, w6 = 0, w7 = 0; // temporary storage // Compute and apply K^0 to the cipher state // Also apply part of the Miyaguchi-Preneel compression function @@ -627,7 +628,6 @@ void WhirlpoolTransform(uint64 *digest, const uint64 *block) r=0; while (1) { - uint64 w0, w1, w2, w3, w4, w5, w6, w7; // temporary storage uint32 t; KSL(0, 4, 3, 2, 1, 0) -- cgit v1.2.3