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
78b2f417
Commit
78b2f417
authored
May 23, 2008
by
Quanah Gibson-Mount
Browse files
ITS
#5518
,ITS
#5525
parent
124930ff
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
78b2f417
...
...
@@ -2,6 +2,7 @@ OpenLDAP 2.3 Change Log
OpenLDAP 2.3.42 Release (2008/05/15)
Fixed libldap file descriptor leak with SELinux (ITS#5507)
Fixed libldap ld_defconn cleanup if it was freed (ITS#5518, ITS#5525)
Fixed slapd abstract objectClass inheritance check (ITS#5474)
Fixed slapd connection handling (ITS#5469)
Fixed slapd delta-syncrepl refresh mode (ITS#5376)
...
...
libraries/libldap/request.c
View file @
78b2f417
...
...
@@ -601,6 +601,9 @@ ldap_free_connection( LDAP *ld, LDAPConn *lc, int force, int unbind )
}
else
{
prevlc
->
lconn_next
=
tmplc
->
lconn_next
;
}
if
(
ld
->
ld_defconn
==
lc
)
{
ld
->
ld_defconn
=
NULL
;
}
break
;
}
prevlc
=
tmplc
;
...
...
@@ -631,6 +634,8 @@ ldap_free_connection( LDAP *ld, LDAPConn *lc, int force, int unbind )
}
if
(
lc
->
lconn_sb
!=
ld
->
ld_sb
)
{
ber_sockbuf_free
(
lc
->
lconn_sb
);
}
else
{
ber_int_sb_close
(
lc
->
lconn_sb
);
}
if
(
lc
->
lconn_rebind_queue
!=
NULL
)
{
int
i
;
...
...
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