diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-02-07 02:07:38 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-02-07 02:39:43 +0100 |
commit | ae7ec4802a81770ff164e465b8d1fb51624ca093 (patch) | |
tree | 369c0ddf810ea03ae2d1426a661b54ca5288c34c /src/Crypto | |
parent | 229bd668f414cac163d12be9a3284b79d95b4ac0 (diff) | |
download | VeraCrypt-ae7ec4802a81770ff164e465b8d1fb51624ca093.tar.gz VeraCrypt-ae7ec4802a81770ff164e465b8d1fb51624ca093.zip |
Windows:Fix various issues and warnings reported by static code analysis tool Coverity.
Diffstat (limited to 'src/Crypto')
-rw-r--r-- | src/Crypto/Whirlpool.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) |