projects
/
platform
/
upstream
/
coreutils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1778e41
)
shrink tmp array length from 80 to 16.
author
Jim Meyering
<jim@meyering.net>
Sun, 17 Sep 2000 13:02:43 +0000
(13:02 +0000)
committer
Jim Meyering
<jim@meyering.net>
Sun, 17 Sep 2000 13:02:43 +0000
(13:02 +0000)
lib/sha.c
patch
|
blob
|
history
diff --git
a/lib/sha.c
b/lib/sha.c
index f6969a6081e298ad8f06bbeec71c1d11e318c938..60260ac5013d95a1c7ddf591c2ac051d2ff2ac14 100644
(file)
--- 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;