mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-03 20:40:05 -05:00
ITS#8232 avoid redundant abandon processing
This commit is contained in:
parent
2eaf8eb213
commit
2160427f89
1 changed files with 3 additions and 0 deletions
|
|
@ -723,6 +723,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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue