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:
Adam Langley 2015-10-09 13:04:03 -07:00
parent f0258fe956
commit 7bd538d94d

View File

@ -1068,7 +1068,7 @@ int bn_mul_mont(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp,
tp[num + 1] = 0; tp[num + 1] = 0;
goto enter; goto enter;
for (i = 0; i < num; i++) { for (; i < num; i++) {
c0 = 0; c0 = 0;
ml = bp[i]; ml = bp[i];
#ifdef mul64 #ifdef mul64