summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Lo <kevlo@FreeBSD.org>2006-10-22 02:19:33 +0000
committerKevin Lo <kevlo@FreeBSD.org>2006-10-22 02:19:33 +0000
commit4b29020487576d59f353e8355c35221446d38c1f (patch)
treec6c56fd86da5504645a2c57205bc7a5d8ab748d2
parent5c28a8d474a0cc47afeb24ca1ec5c29c0dd7e4bf (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 825ed415eff0..ed33b662db87 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 = 0, *W512 = (sha2_word64*)context->buffer;
+ sha2_word64 T1 = 0, T2 = 0, *W512 = (sha2_word64*)context->buffer;
int j;
/* Initialize registers with the prev. intermediate value */