mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
return LDAP_OTHER if the filter cannot be parsed (ITS#5751)
This commit is contained in:
parent
eba56f0ec9
commit
c1c16618a4
@ -642,6 +642,7 @@ constraint_violation( constraint *c, struct berval *bv, Operation *op, SlapReply
|
|||||||
Debug( LDAP_DEBUG_ANY,
|
Debug( LDAP_DEBUG_ANY,
|
||||||
"%s constraint_violation uri filter=\"%s\" invalid\n",
|
"%s constraint_violation uri filter=\"%s\" invalid\n",
|
||||||
op->o_log_prefix, filterstr.bv_val, 0 );
|
op->o_log_prefix, filterstr.bv_val, 0 );
|
||||||
|
rc = LDAP_OTHER;
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
Debug(LDAP_DEBUG_TRACE,
|
Debug(LDAP_DEBUG_TRACE,
|
||||||
@ -656,7 +657,7 @@ constraint_violation( constraint *c, struct berval *bv, Operation *op, SlapReply
|
|||||||
}
|
}
|
||||||
op->o_tmpfree(filterstr.bv_val, op->o_tmpmemctx);
|
op->o_tmpfree(filterstr.bv_val, op->o_tmpmemctx);
|
||||||
|
|
||||||
if((rc != LDAP_SUCCESS) && (rc != LDAP_NO_SUCH_OBJECT)) {
|
if ((rc != LDAP_SUCCESS) && (rc != LDAP_NO_SUCH_OBJECT)) {
|
||||||
return rc; /* unexpected error */
|
return rc; /* unexpected error */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user