summaryrefslogtreecommitdiffstats
path: root/apps/openssl.c
diff options
context:
space:
mode:
authoryuanjungong <yuanjungong96@gmail.com>2021-09-01 11:33:34 +0800
committerTomas Mraz <tomas@openssl.org>2021-10-22 11:56:29 +0200
commitf11c01a666e9d5b97e859cbc74586802549dee00 (patch)
treee85444eaaf1ba6a3c1fb4cd53a5a20fcf479cabb /apps/openssl.c
parent5001287c0dcd8ca4ffc564b360f86df79bba40c1 (diff)
Clean up on failed BIO creation
Reviewed-by: Shane Lontis <shane.lontis@oracle.com> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/16316)
Diffstat (limited to 'apps/openssl.c')
-rw-r--r--apps/openssl.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/openssl.c b/apps/openssl.c
index 2693350ffc..e20661277e 100644
--- a/apps/openssl.c
+++ b/apps/openssl.c
@@ -168,14 +168,17 @@ static void setup_trace_category(int category)
{
BIO *channel;
tracedata *trace_data;
+ BIO *bio = NULL;
if (OSSL_trace_enabled(category))
return;
- channel = BIO_push(BIO_new(BIO_f_prefix()), dup_bio_err(FORMAT_TEXT));
+ bio = BIO_new(BIO_f_prefix());
+ channel = BIO_push(bio, dup_bio_err(FORMAT_TEXT));
trace_data = OPENSSL_zalloc(sizeof(*trace_data));
if (trace_data == NULL
+ || bio == NULL
|| (trace_data->bio = channel) == NULL
|| OSSL_trace_set_callback(category, internal_trace_cb,
trace_data) == 0