From: Jim Meyering Date: Sun, 17 Sep 2000 13:02:43 +0000 (+0000) Subject: shrink tmp array length from 80 to 16. X-Git-Tag: FILEUTILS-4_0_27~36 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=eccfa6b591ec0fe77ec50ab46b086be90d31b16d;p=thirdparty%2Fcoreutils.git shrink tmp array length from 80 to 16. --- 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;