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

ITS#5489

parent 5713128a
No related branches found
No related tags found
No related merge requests found
......@@ -6,6 +6,7 @@ OpenLDAP 2.4.10 Engineering
Fixed libldap_r missing stubs (ITS#5519)
Fixed slapd missing termination of integerFilter keys (ITS#5503)
Fixed slapd multiple attrs in URI (ITS#5516)
Fixed slapd socket assert (ITS#5489)
Fixed slapd-bdb/hdb MAXPATHLEN (ITS#5531)
Fixed slapd-ldap entry_get() op-dependent behavior (ITS#5513)
Fixed slapd-meta quarantine crasher (ITS#5522)
......
......@@ -928,9 +928,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--;
}
......
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