summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crypto/bn/bn_lib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/bn/bn_lib.c b/crypto/bn/bn_lib.c
index af8ec34a49..658a491763 100644
--- a/crypto/bn/bn_lib.c
+++ b/crypto/bn/bn_lib.c
@@ -786,9 +786,9 @@ int bn_cmp_part_words(const BN_ULONG *a, const BN_ULONG *b,
if (dl < 0)
{
- for (i=-dl; i<0; i++)
+ for (i=dl; i<0; i++)
{
- if (b[n+i] != 0)
+ if (b[n-i] != 0)
return -1; /* a < b */
}
}