mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-28 01:29:18 -05:00
fix prev commit (ITS#5212)
This commit is contained in:
parent
f8ad90167b
commit
33616c51d6
1 changed files with 2 additions and 1 deletions
|
|
@ -607,7 +607,8 @@ filter2bv_x( Operation *op, Filter *f, struct berval *fstr )
|
|||
|
||||
simple:
|
||||
value = f->f_av_value;
|
||||
if ( f->f_av_desc->ad_type->sat_equality->smr_usage & SLAP_MR_MUTATION_NORMALIZER ) {
|
||||
if ( f->f_av_desc->ad_type->sat_equality &&
|
||||
f->f_av_desc->ad_type->sat_equality->smr_usage & SLAP_MR_MUTATION_NORMALIZER ) {
|
||||
f->f_av_desc->ad_type->sat_equality->smr_normalize(
|
||||
(SLAP_MR_DENORMALIZE|SLAP_MR_VALUE_OF_ASSERTION_SYNTAX),
|
||||
NULL, NULL, &f->f_av_value, &value, op->o_tmpmemctx );
|
||||
|
|
|
|||
Loading…
Reference in a new issue