summaryrefslogtreecommitdiff
path: root/serpent.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2017-09-01 03:19:43 -0400
committerJeffrey Walton <noloader@gmail.com>2017-09-01 03:19:43 -0400
commit29cf783458630af1316e792ac2ea364c4e8633e4 (patch)
treea7e046862a653a06eebf3dc36689f498554d9dd4 /serpent.cpp
parent14a5221d8200e6facdb6840b8cf4c6e98305fa48 (diff)
downloadcryptopp-git-29cf783458630af1316e792ac2ea364c4e8633e4.tar.gz
Clear xLC "1540-1102 (W) "e" might be used before it is set"
Diffstat (limited to 'serpent.cpp')
-rw-r--r--serpent.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/serpent.cpp b/serpent.cpp
index 4b41808c..80a59499 100644
--- a/serpent.cpp
+++ b/serpent.cpp
@@ -90,7 +90,7 @@ void Serpent::Enc::ProcessAndXorBlock(const byte *inBlock, const byte *xorBlock,
void Serpent::Dec::ProcessAndXorBlock(const byte *inBlock, const byte *xorBlock, byte *outBlock) const
{
- word32 a, b, c, d, e;
+ word32 a, b, c, d, e=0;
Block::Get(inBlock)(a)(b)(c)(d);