Skip to content
Snippets Groups Projects
Commit b179e05e authored by Howard Chu's avatar Howard Chu
Browse files

For previous, assert (writewaiter==0) in conn_destroy too.

parent 21796e67
No related branches found
No related tags found
No related merge requests found
......@@ -651,6 +651,7 @@ connection_destroy( Connection *c )
assert( c->c_struct_state != SLAP_C_UNUSED );
assert( c->c_conn_state != SLAP_C_INVALID );
assert( LDAP_STAILQ_EMPTY(&c->c_ops) );
assert( c->c_writewaiter == 0);
/* only for stats (print -1 as "%lu" may give unexpected results ;) */
connid = c->c_connid;
......@@ -708,7 +709,6 @@ connection_destroy( Connection *c )
ber_sockbuf_ctrl( c->c_sb, LBER_SB_OPT_SET_MAX_INCOMING, &max );
}
c->c_writewaiter = 0;
c->c_conn_state = SLAP_C_INVALID;
c->c_struct_state = SLAP_C_UNUSED;
......
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