ITS#9428 fix cancel exop

This commit is contained in:
Howard Chu 2020-12-20 21:31:15 +00:00
parent 27428b96f5
commit dfe1f6494d

View file

@ -65,6 +65,11 @@ int cancel_extop( Operation *op, SlapReply *rs )
return LDAP_PROTOCOL_ERROR;
}
if ( opid == op->o_msgid ) {
op->o_cancel = SLAP_CANCEL_DONE;
return LDAP_SUCCESS;
}
ldap_pvt_thread_mutex_lock( &op->o_conn->c_mutex );
if ( op->o_abandon ) {