Skip to content
Snippets Groups Projects
Commit 571ac24b authored by Howard Chu's avatar Howard Chu
Browse files

Fix destruct sequencing

parent 056b193e
No related branches found
No related tags found
No related merge requests found
......@@ -111,8 +111,10 @@ static void tls_init_threads( void )
void
ldap_int_tls_destroy( struct ldapoptions *lo )
{
SSL_CTX_free( lo->ldo_tls_ctx );
lo->ldo_tls_ctx = NULL;
if ( lo->ldo_tls_ctx ) {
SSL_CTX_free( lo->ldo_tls_ctx );
lo->ldo_tls_ctx = NULL;
}
if ( lo->ldo_tls_certfile ) {
LDAP_FREE( lo->ldo_tls_certfile );
......@@ -146,6 +148,10 @@ ldap_int_tls_destroy( struct ldapoptions *lo )
void
ldap_pvt_tls_destroy( void )
{
struct ldapoptions *lo = LDAP_INT_GLOBAL_OPT();
ldap_int_tls_destroy( lo );
EVP_cleanup();
ERR_remove_state(0);
ERR_free_strings();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment