summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Kabaev <kan@FreeBSD.org>2006-08-26 21:48:00 +0000
committerAlexander Kabaev <kan@FreeBSD.org>2006-08-26 21:48:00 +0000
commitbcbd3d69bfeeb4fa1f6572709bd574c6442c8313 (patch)
tree4570e9acb2024bc947e47ad164471bfb8cdf3d00
parentf2d5255dddb566c0d6b86d6d6c0a1dd497d92168 (diff)
Notes
-rw-r--r--sys/crypto/sha2/sha2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/crypto/sha2/sha2.c b/sys/crypto/sha2/sha2.c
index 98e497e3116b..825ed415eff0 100644
--- a/sys/crypto/sha2/sha2.c
+++ b/sys/crypto/sha2/sha2.c
@@ -750,7 +750,7 @@ void SHA512_Transform(SHA512_CTX* context, const sha2_word64* data) {
void SHA512_Transform(SHA512_CTX* context, const sha2_word64* data) {
sha2_word64 a, b, c, d, e, f, g, h, s0, s1;
- sha2_word64 T1, T2, *W512 = (sha2_word64*)context->buffer;
+ sha2_word64 T1, T2 = 0, *W512 = (sha2_word64*)context->buffer;
int j;
/* Initialize registers with the prev. intermediate value */