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

Fix prev commit

parent 423c53d2
Branches
Tags
No related merge requests found
......@@ -711,8 +711,12 @@ static void connection_abandon( Connection *c )
/* c_mutex must be locked by caller */
Operation *o, *next, op = {0};
Opheader ohdr = {0};
SlapReply rs = {0};
op.o_hdr = &ohdr;
op.o_conn = c;
op.o_connid = c->c_connid;
op.o_tag = LDAP_REQ_ABANDON;
for ( o = LDAP_STAILQ_FIRST( &c->c_ops ); o; o=next ) {
next = LDAP_STAILQ_NEXT( o, o_next );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment