Message ID | CAEwic4Zt6uNyQtfiL=xWcK1nkc6hYbfb1pN1Xtzatv9i-A-VRw@mail.gmail.com |
---|---|
State | New |
Headers | show |
On Wed, Jan 30, 2013 at 9:45 AM, Kai Tietz <ktietz70@googlemail.com> wrote: > > 2013-01-30 Kai Tietz <ktietz@redhat.com> > > PR other/54620 > * sha1.c (sha1_process_block): Handle case that size_t is > a wider-integer-scalar as a 32-bit unsigned integer. This is OK. Thanks. Ian
Index: sha1.c =================================================================== --- sha1.c (Revision 195578) +++ sha1.c (Arbeitskopie) @@ -300,8 +300,7 @@ sha1_process_block (const void *buffer, size_t len 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); #define rol(x, n) (((x) << (n)) | ((sha1_uint32) (x) >> (32 - (n))))