mirror of
https://github.com/openssl/openssl.git
synced 2025-02-17 14:32:04 +08:00
Circument egcs bug.
Submitted by: Andy Polyakov <appro@fy.chalmers.se>
This commit is contained in:
parent
f3c751067a
commit
b14d0e0590
@ -93,7 +93,8 @@ BN_ULONG bn_mul_words(BN_ULONG *rp, BN_ULONG *ap, int num, BN_ULONG w)
|
||||
bn_check_num(num);
|
||||
if (num <= 0) return(c1);
|
||||
|
||||
for (;;)
|
||||
/* for (;;) */
|
||||
while (1) /* circumvent egcs-1.1.2 bug */
|
||||
{
|
||||
mul(rp[0],ap[0],w,c1);
|
||||
if (--num == 0) break;
|
||||
|
Loading…
Reference in New Issue
Block a user