Skip to content
Snippets Groups Projects
Commit 8a44ba22 authored by Howard Chu's avatar Howard Chu Committed by Quanah Gibson-Mount
Browse files

ITS#8232 avoid redundant abandon processing

parent 2e916071
No related branches found
No related tags found
No related merge requests found
......@@ -741,6 +741,9 @@ static void connection_abandon( Connection *c )
SlapReply rs = {REP_RESULT};
next = LDAP_STAILQ_NEXT( o, o_next );
/* don't abandon an op twice */
if ( o->o_abandon )
continue;
op.orn_msgid = o->o_msgid;
o->o_abandon = 1;
op.o_bd = frontendDB;
......
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