Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Joe Martin
OpenLDAP
Commits
e0215acd
Commit
e0215acd
authored
Feb 09, 2009
by
Quanah Gibson-Mount
Browse files
ITS
#5934
parent
8dad7e14
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
e0215acd
...
...
@@ -7,6 +7,7 @@ OpenLDAP 2.4.14 Engineering
Added libldap GnuTLS setting random file (ITS#5462)
Added libldap alias dereferencing in C API (ITS#5916)
Fixed libldap deref handling (ITS#5768)
Fixed libldap NULL pointer deref (ITS#5934)
Fixed libldap peer cert memory leak (ITS#5849)
Fixed libldap interaction with GnuTLS CN IP-based matches (ITS#5789)
Fixed libldap intermediate response behavior (ITS#5896)
...
...
libraries/libldap/request.c
View file @
e0215acd
...
...
@@ -452,9 +452,9 @@ ldap_new_connection( LDAP *ld, LDAPURLDesc **srvlist, int use_ldsb,
ldap_pvt_thread_mutex_unlock
(
&
ld
->
ld_conn_mutex
);
#endif
if
(
lc
->
lconn_server
->
lud_exts
)
{
if
(
connect
)
{
#ifdef HAVE_TLS
if
(
connect
)
{
if
(
lc
->
lconn_server
->
lud_exts
)
{
int
rc
,
ext
=
find_tls_ext
(
lc
->
lconn_server
);
if
(
ext
)
{
LDAPConn
*
savedefconn
;
...
...
@@ -480,7 +480,6 @@ ldap_new_connection( LDAP *ld, LDAPURLDesc **srvlist, int use_ldsb,
return
NULL
;
}
}
}
#endif
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment