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

Fix prev commit

parent 01f7a746
No related branches found
No related tags found
No related merge requests found
......@@ -142,7 +142,9 @@ int connections_destroy(void)
ldap_pvt_thread_mutex_destroy( &connections[i].c_write_mutex );
ldap_pvt_thread_cond_destroy( &connections[i].c_write_cv );
#ifdef LDAP_SLAPI
slapi_x_free_object_extensions( SLAPI_X_EXT_CONNECTION, &connections[i] );
if ( slapi_plugins_used ) {
slapi_x_free_object_extensions( SLAPI_X_EXT_CONNECTION, &connections[i] );
}
#endif
}
}
......
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