changeset 2869:2a75d54dda8b

shrink tmp array length from 80 to 16.
author Jim Meyering <jim@meyering.net>
date Sun, 17 Sep 2000 13:02:43 +0000
parents 665842f23067
children 23fcf4177127
files lib/sha.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lib/sha.c
+++ b/lib/sha.c
@@ -249,7 +249,7 @@
   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;