mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-07 23:51:21 -05:00
Fix freeval check
This commit is contained in:
parent
c4ab31ddc9
commit
7972ebe66f
1 changed files with 1 additions and 1 deletions
|
|
@ -100,7 +100,7 @@ ldap_back_compare(
|
|||
ldap_back_dn_massage( &dc, &op->orc_ava->aa_value, &mapped_val );
|
||||
if (mapped_val.bv_val == NULL || mapped_val.bv_val[0] == '\0') {
|
||||
mapped_val = op->orc_ava->aa_value;
|
||||
} else {
|
||||
} else if (mapped_val.bv_val != op->orc_ava->aa_value) {
|
||||
freeval = 1;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue