From b1a2e8c606606a13693bd52833a507edecf0dd24 Mon Sep 17 00:00:00 2001 From: Kai Tietz Date: Thu, 31 Jan 2013 09:11:43 +0100 Subject: 2013-01-31 Kai Tietz PR other/543413 * md5.c (md5_process_block): Handle case that size_t is a wider-integer-scalar a 32-bit unsigned integer. From-SVN: r195600 --- libiberty/md5.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'libiberty/md5.c') diff --git a/libiberty/md5.c b/libiberty/md5.c index 8cc0cb5fe96..b30a6b7bfc5 100644 --- a/libiberty/md5.c +++ b/libiberty/md5.c @@ -293,8 +293,7 @@ md5_process_block (const void *buffer, size_t len, struct md5_ctx *ctx) length of the file up to 2^64 bits. Here we only compute the number of bytes. Do a double word increment. */ ctx->total[0] += len; - if (ctx->total[0] < len) - ++ctx->total[1]; + ctx->total[1] += ((len >> 31) >> 1) + (ctx->total[0] < len); /* Process all bytes in the buffer with 64 bytes in each round of the loop. */ -- cgit v1.2.3