Remove an unreachable expression.
The goto always jumps into the loop so the for's initialisation expression can never be executed. Clang warns about this. Change-Id: I3c3d4b8430754099e9ca6fd20101868c40165245
This commit is contained in:
parent
f0258fe956
commit
7bd538d94d
@ -1068,7 +1068,7 @@ int bn_mul_mont(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp,
|
||||
tp[num + 1] = 0;
|
||||
goto enter;
|
||||
|
||||
for (i = 0; i < num; i++) {
|
||||
for (; i < num; i++) {
|
||||
c0 = 0;
|
||||
ml = bp[i];
|
||||
#ifdef mul64
|
||||
|
Loading…
Reference in New Issue
Block a user