summaryrefslogtreecommitdiffstats
path: root/crypto/bn
diff options
context:
space:
mode:
authorPauli <paul.dale@oracle.com>2017-05-11 10:45:38 +1000
committerRich Salz <rsalz@openssl.org>2017-05-11 11:13:12 -0400
commitb020bf6528cdf992596a63814f521bc036826ad9 (patch)
tree3bd7ad5e6fb3f3dd8f97229978205331ee5671de /crypto/bn
parentea3fc6010f56bad83560592b54bc54de962bbd39 (diff)
Remove dead code.
The second BN_is_zero test can never be true. Reviewed-by: Andy Polyakov <appro@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3434) (cherry picked from commit 3f97052392cb10fca5309212bf720685262ad4a6)
Diffstat (limited to 'crypto/bn')
-rw-r--r--crypto/bn/bn_print.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/crypto/bn/bn_print.c b/crypto/bn/bn_print.c
index f121fb6e9a..f85a6550a5 100644
--- a/crypto/bn/bn_print.c
+++ b/crypto/bn/bn_print.c
@@ -82,8 +82,6 @@ char *BN_bn2hex(const BIGNUM *a)
p = buf;
if (a->neg)
*(p++) = '-';
- if (BN_is_zero(a))
- *(p++) = '0';
for (i = a->top - 1; i >= 0; i--) {
for (j = BN_BITS2 - 8; j >= 0; j -= 8) {
/* strip leading zeros */