From 29cf783458630af1316e792ac2ea364c4e8633e4 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Fri, 1 Sep 2017 03:19:43 -0400 Subject: [PATCH] Clear xLC "1540-1102 (W) "e" might be used before it is set" --- serpent.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);