From f7aee7431e94dcef216d52c775e006bb57471968 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 17 Sep 2000 13:02:43 +0000 Subject: [PATCH] shrink tmp array length from 80 to 16. --- lib/sha.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/sha.c b/lib/sha.c index f6969a6081..60260ac501 100644 --- a/lib/sha.c +++ b/lib/sha.c @@ -249,7 +249,7 @@ sha_process_block (const void *buffer, size_t len, struct sha_ctx *ctx) const md5_uint32 *words = buffer; size_t nwords = len / sizeof (md5_uint32); const md5_uint32 *endp = words + nwords; - md5_uint32 x[80]; + md5_uint32 x[16]; md5_uint32 a = ctx->A; md5_uint32 b = ctx->B; md5_uint32 c = ctx->C; -- 2.30.2