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

ITS#6453

parent 319cbe2e
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
......@@ -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 );
}
......
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