summaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2024-01-29 14:49:09 +0000
committerHugo Landau <hlandau@openssl.org>2024-02-02 11:50:30 +0000
commit1cc04b777dd7febf767e4dcbd4ace014d5521f47 (patch)
treefab1db3988f42cdd744098b5225f38921c9b09c0 /ssl
parent63aaa51b151c86339c3b21655504adc6d4343d34 (diff)
Minor fixes
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Neil Horman <nhorman@openssl.org> (Merged from https://github.com/openssl/openssl/pull/22037)
Diffstat (limited to 'ssl')
-rw-r--r--ssl/quic/qlog.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/ssl/quic/qlog.c b/ssl/quic/qlog.c
index e35c7d7b63..7299d69515 100644
--- a/ssl/quic/qlog.c
+++ b/ssl/quic/qlog.c
@@ -162,8 +162,7 @@ void ossl_qlog_free(QLOG *qlog)
if (qlog == NULL)
return;
- ossl_json_flush(&qlog->json);
- ossl_json_cleanup(&qlog->json);
+ ossl_json_flush_cleanup(&qlog->json);
BIO_free_all(qlog->bio);
OPENSSL_free((char *)qlog->info.title);
OPENSSL_free((char *)qlog->info.description);