mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-30 11:39:34 -05:00
Misc bug fix: component matching
This commit is contained in:
parent
58a358e7b2
commit
ea0033e439
1 changed files with 5 additions and 1 deletions
|
|
@ -305,8 +305,12 @@ comp_equality_candidates (
|
|||
return 0;
|
||||
|
||||
ai = bdb_attr_mask( op->o_bd->be_private, mra->ma_desc );
|
||||
if( ai )
|
||||
if( ai ) {
|
||||
cr_list = ai->ai_cr;
|
||||
}
|
||||
else {
|
||||
return 0;
|
||||
}
|
||||
/* find a component reference to be indexed */
|
||||
sat_syntax = ca->ca_ma_rule->smr_syntax;
|
||||
for ( cr = cr_list ; cr ; cr = cr->cr_next ) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue