diff options
Diffstat (limited to 'crypto/sha512_generic.c')
| -rw-r--r-- | crypto/sha512_generic.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/sha512_generic.c b/crypto/sha512_generic.c index 107f6f7be5e..dd30f40af9f 100644 --- a/crypto/sha512_generic.c +++ b/crypto/sha512_generic.c @@ -174,7 +174,7 @@ sha512_update(struct shash_desc *desc, const u8 *data, unsigned int len)  	index = sctx->count[0] & 0x7f;  	/* Update number of bytes */ -	if (!(sctx->count[0] += len)) +	if ((sctx->count[0] += len) < len)  		sctx->count[1]++;          part_len = 128 - index;  |