mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-18 18:18:06 -05:00
ITS#5489
This commit is contained in:
parent
ef21d71115
commit
8696d47b74
2 changed files with 3 additions and 2 deletions
1
CHANGES
1
CHANGES
|
|
@ -3,6 +3,7 @@ OpenLDAP 2.3 Change Log
|
|||
OpenLDAP 2.3.43 Engineering
|
||||
Fixed liblber ber_get_next length decoding (ITS#5580)
|
||||
Fixed slapd replog timestamps (ITS#5532)
|
||||
Fixed slapd socket assert (ITS#5489)
|
||||
|
||||
OpenLDAP 2.3.42 Release (2008/05/28)
|
||||
Fixed libldap file descriptor leak with SELinux (ITS#5507)
|
||||
|
|
|
|||
|
|
@ -810,9 +810,9 @@ slapd_clr_write( ber_socket_t s, int wake )
|
|||
{
|
||||
ldap_pvt_thread_mutex_lock( &slap_daemon.sd_mutex );
|
||||
|
||||
assert( SLAP_SOCK_IS_ACTIVE( s ));
|
||||
|
||||
if ( SLAP_SOCK_IS_WRITE( s )) {
|
||||
assert( SLAP_SOCK_IS_ACTIVE( s ));
|
||||
|
||||
SLAP_SOCK_CLR_WRITE( s );
|
||||
slap_daemon.sd_nwriters--;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue