The branch OpenSSL_1_1_0-stable has been updated
via bc8a4d54a87b3ac3307683c94eccf5d817348000 (commit)
from 975b993ee6c6772d52d786c6ea43f3d04d6ad88a (commit)
- Log -----------------------------------------------------------------
commit bc8a4d54a87b3ac3307683c94eccf5d817348000
Author: Pauli <[email protected]>
Date: Thu May 11 10:45:38 2017 +1000
Remove dead code.
The second BN_is_zero test can never be true.
Reviewed-by: Andy Polyakov <[email protected]>
Reviewed-by: Richard Levitte <[email protected]>
Reviewed-by: Rich Salz <[email protected]>
(Merged from https://github.com/openssl/openssl/pull/3434)
(cherry picked from commit 3f97052392cb10fca5309212bf720685262ad4a6)
-----------------------------------------------------------------------
Summary of changes:
crypto/bn/bn_print.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/crypto/bn/bn_print.c b/crypto/bn/bn_print.c
index a16bde8..8216760 100644
--- a/crypto/bn/bn_print.c
+++ b/crypto/bn/bn_print.c
@@ -33,8 +33,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 */
_____
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits