mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-09 22:04:12 -05:00
Do not cache group evaluation if result is SLAP_CB_CONTINUE
This commit is contained in:
parent
3e47ba5aef
commit
a8980ffe9e
1 changed files with 2 additions and 1 deletions
|
|
@ -950,7 +950,8 @@ slapi_over_acl_group(
|
|||
rc = LDAP_NO_SUCH_OBJECT; /* return SLAP_CB_CONTINUE for correctness? */
|
||||
}
|
||||
|
||||
if ( op->o_tag != LDAP_REQ_BIND && !op->o_do_not_cache ) {
|
||||
if ( op->o_tag != LDAP_REQ_BIND && !op->o_do_not_cache &&
|
||||
rc != SLAP_CB_CONTINUE ) {
|
||||
g = op->o_tmpalloc( sizeof( GroupAssertion ) + gr_ndn->bv_len,
|
||||
op->o_tmpmemctx );
|
||||
g->ga_be = op->o_bd;
|
||||
|
|
|
|||
Loading…
Reference in a new issue