Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tero Saarni
OpenLDAP
Commits
e42bc1fe
Commit
e42bc1fe
authored
Jan 04, 2011
by
Quanah Gibson-Mount
Browse files
ITS#6453
parent
319cbe2e
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
e42bc1fe
...
...
@@ -19,6 +19,7 @@ OpenLDAP 2.4.24 Engineering
Fixed libldap EOF handling (ITS#6723)
Fixed libldap GnuTLS hang on socket close (ITS#6673)
Fixed libldap sasl partial write handling (ITS#6639)
Fixed libldap search leak (ITS#6453)
Fixed libldap referral chasing (ITS#6602)
Fixed libldap leak when chasing referrals (ITS#6744)
Fixed libldap url parsing with NULL host (ITS#6653)
...
...
libraries/libldap/search.c
View file @
e42bc1fe
...
...
@@ -182,6 +182,11 @@ ldap_pvt_search_s(
if
(
rc
<=
0
)
{
/* error(-1) or timeout(0) */
if
(
ld
->
ld_errno
==
LDAP_TIMEOUT
)
{
/* cleanup request */
(
void
)
ldap_abandon
(
ld
,
msgid
);
ld
->
ld_errno
=
LDAP_TIMEOUT
;
}
return
(
ld
->
ld_errno
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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