This commit is contained in:
Quanah Gibson-Mount 2008-07-07 18:57:18 +00:00
parent ef21d71115
commit 8696d47b74
2 changed files with 3 additions and 2 deletions

View file

@ -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)

View file

@ -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--;
}