summaryrefslogtreecommitdiff
path: root/lib/libssl
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libssl')
-rw-r--r--lib/libssl/src/crypto/bn/bn_lib.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/libssl/src/crypto/bn/bn_lib.c b/lib/libssl/src/crypto/bn/bn_lib.c
index 5e530d94743..463463cfcb0 100644
--- a/lib/libssl/src/crypto/bn/bn_lib.c
+++ b/lib/libssl/src/crypto/bn/bn_lib.c
@@ -702,9 +702,6 @@ int BN_cmp(const BIGNUM *a, const BIGNUM *b)
{ gt=1; lt= -1; }
else { gt= -1; lt=1; }
- bn_fix_top(a);
- bn_fix_top(b);
-
if (a->top > b->top) return(gt);
if (a->top < b->top) return(lt);
for (i=a->top-1; i>=0; i--)