diff options
Diffstat (limited to 'lib/libcrypto/bn')
-rw-r--r-- | lib/libcrypto/bn/bn_print.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libcrypto/bn/bn_print.c b/lib/libcrypto/bn/bn_print.c index ea5fa5c3dae..ad3a847f01b 100644 --- a/lib/libcrypto/bn/bn_print.c +++ b/lib/libcrypto/bn/bn_print.c @@ -157,8 +157,7 @@ BN_bn2dec(const BIGNUM *a) ok = 1; err: - if (bn_data != NULL) - free(bn_data); + free(bn_data); if (t != NULL) BN_free(t); if (!ok && buf) { |