From 056b193ed7a231561b4df365a4239328833738bf Mon Sep 17 00:00:00 2001 From: Howard Chu Date: Fri, 7 Apr 2006 01:52:32 +0000 Subject: [PATCH] Don't implicitly inherit the default SSL_CTX, tls.c:alloc_handle will set it explicitly and handle its refcount. --- libraries/libldap/open.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libraries/libldap/open.c b/libraries/libldap/open.c index 35ef7ad876..d1eaf04b2a 100644 --- a/libraries/libldap/open.c +++ b/libraries/libldap/open.c @@ -137,12 +137,12 @@ ldap_create( LDAP **ldp ) #endif #ifdef HAVE_TLS - /* We inherit the SSL_CTX, don't need the names/paths. Leave them - * empty to allow new SSL_CTX's to be created from scratch. + /* We explicitly inherit the SSL_CTX, don't need the names/paths. Leave + * them empty to allow new SSL_CTX's to be created from scratch. */ memset( &ld->ld_options.ldo_tls_info, 0, sizeof( ld->ld_options.ldo_tls_info )); - + ld->ld_options.ldo_tls_ctx = NULL; #endif if ( gopts->ldo_tm_api && -- 2.39.5