Initialize T1 to silent gcc warning.

Approved by: cognet
This commit is contained in:
Kevin Lo 2006-10-22 02:19:33 +00:00
parent 5c28a8d474
commit 4b29020487
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=163602

View File

@ -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 */