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
7b900b07
Commit
7b900b07
authored
Mar 05, 2009
by
Quanah Gibson-Mount
Browse files
ITS#5980
parent
495f26b1
Changes
3
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
7b900b07
...
...
@@ -4,6 +4,7 @@ OpenLDAP 2.4.16 Engineering
Fixed libldap GnuTLS TLSVerifyCilent try (ITS#5981)
Fixed libldap segfault in checking cert/DN (ITS#5976)
Fixed libldap peer cert memory leak again (ITS#5849)
Fixed libldap referral chasing (ITS#5980)
Fixed slapd backglue with empty DBs (ITS#5986)
Fixed slapd-bdb/hdb cachesize handling (ITS#5860)
Fixed slapd-ldap/meta with broken AD results (ITS#5977)
...
...
libraries/libldap/request.c
View file @
7b900b07
...
...
@@ -635,8 +635,7 @@ find_connection( LDAP *ld, LDAPURLDesc *srv, int any )
if
(
lsu_port
==
lcu_port
&&
strcmp
(
lcu
->
lud_scheme
,
lsu
->
lud_scheme
)
==
0
&&
lcu
->
lud_host
!=
NULL
&&
*
lcu
->
lud_host
!=
'\0'
&&
lsu
->
lud_host
!=
NULL
&&
*
lsu
->
lud_host
!=
'\0'
&&
lcu
->
lud_host
!=
NULL
&&
lsu
->
lud_host
!=
NULL
&&
strcasecmp
(
lsu
->
lud_host
,
lcu
->
lud_host
)
==
0
)
{
found
=
1
;
...
...
libraries/libldap/result.c
View file @
7b900b07
...
...
@@ -845,6 +845,10 @@ nextresp2:
return
(
-
1
);
/* fatal error */
}
lr
->
lr_res_errno
=
LDAP_SUCCESS
;
/* sucessfully chased referral */
if
(
lr
->
lr_res_matched
)
{
LDAP_FREE
(
lr
->
lr_res_matched
);
lr
->
lr_res_matched
=
NULL
;
}
}
else
{
if
(
lr
->
lr_outrefcnt
<=
0
&&
lr
->
lr_parent
==
NULL
)
{
...
...
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