Skip to content
Snippets Groups Projects
Commit e0215acd authored by Quanah Gibson-Mount's avatar Quanah Gibson-Mount
Browse files

ITS#5934

parent 8dad7e14
No related branches found
No related tags found
No related merge requests found
...@@ -7,6 +7,7 @@ OpenLDAP 2.4.14 Engineering ...@@ -7,6 +7,7 @@ OpenLDAP 2.4.14 Engineering
Added libldap GnuTLS setting random file (ITS#5462) Added libldap GnuTLS setting random file (ITS#5462)
Added libldap alias dereferencing in C API (ITS#5916) Added libldap alias dereferencing in C API (ITS#5916)
Fixed libldap deref handling (ITS#5768) Fixed libldap deref handling (ITS#5768)
Fixed libldap NULL pointer deref (ITS#5934)
Fixed libldap peer cert memory leak (ITS#5849) Fixed libldap peer cert memory leak (ITS#5849)
Fixed libldap interaction with GnuTLS CN IP-based matches (ITS#5789) Fixed libldap interaction with GnuTLS CN IP-based matches (ITS#5789)
Fixed libldap intermediate response behavior (ITS#5896) Fixed libldap intermediate response behavior (ITS#5896)
......
...@@ -452,9 +452,9 @@ ldap_new_connection( LDAP *ld, LDAPURLDesc **srvlist, int use_ldsb, ...@@ -452,9 +452,9 @@ ldap_new_connection( LDAP *ld, LDAPURLDesc **srvlist, int use_ldsb,
ldap_pvt_thread_mutex_unlock( &ld->ld_conn_mutex ); ldap_pvt_thread_mutex_unlock( &ld->ld_conn_mutex );
#endif #endif
if ( lc->lconn_server->lud_exts ) { if ( connect ) {
#ifdef HAVE_TLS #ifdef HAVE_TLS
if ( connect ) { if ( lc->lconn_server->lud_exts ) {
int rc, ext = find_tls_ext( lc->lconn_server ); int rc, ext = find_tls_ext( lc->lconn_server );
if ( ext ) { if ( ext ) {
LDAPConn *savedefconn; LDAPConn *savedefconn;
...@@ -480,7 +480,6 @@ ldap_new_connection( LDAP *ld, LDAPURLDesc **srvlist, int use_ldsb, ...@@ -480,7 +480,6 @@ ldap_new_connection( LDAP *ld, LDAPURLDesc **srvlist, int use_ldsb,
return NULL; return NULL;
} }
} }
} }
#endif #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