diff --git a/iocore/net/SSLConfig.cc b/iocore/net/SSLConfig.cc index f315c68feed..0c75cd9baba 100644 --- a/iocore/net/SSLConfig.cc +++ b/iocore/net/SSLConfig.cc @@ -113,6 +113,7 @@ SSLConfigParams::reset() serverCertPathOnly = serverCertChainFilename = configFilePath = serverCACertFilename = serverCACertPath = clientCertPath = clientKeyPath = clientCACertFilename = clientCACertPath = cipherSuite = client_cipherSuite = dhparamsFile = serverKeyPathOnly = clientKeyPathOnly = clientCertPathOnly = nullptr; + ssl_ocsp_response_path_only = nullptr; server_tls13_cipher_suites = nullptr; client_tls13_cipher_suites = nullptr; server_groups_list = nullptr; @@ -152,6 +153,8 @@ SSLConfigParams::cleanup() client_cipherSuite = static_cast(ats_free_null(client_cipherSuite)); dhparamsFile = static_cast(ats_free_null(dhparamsFile)); + ssl_ocsp_response_path_only = static_cast(ats_free_null(ssl_ocsp_response_path_only)); + server_tls13_cipher_suites = static_cast(ats_free_null(server_tls13_cipher_suites)); client_tls13_cipher_suites = static_cast(ats_free_null(client_tls13_cipher_suites)); server_groups_list = static_cast(ats_free_null(server_groups_list));