OpenLDAP 2.3.14 Engineering
Fixed slapd sc_prev update after free bug (ITS#4237)
- Fixed slapd-meta sizelimit disclose issue (ITS#4213)
Fixed slapo-rwm static DN free bug (ITS#4248)
Fixed slapd assertion control restrictions
+ Fixed slapd ACL exact attrval clause needs normalization (ITS#4255)
OpenLDAP 2.3.13 Release
Fixed libldap/liblutil MSG_ACCRIGHTSLEN bug (ITS#4206)
if ( a->acl_attrs[0].an_desc->ad_type->sat_syntax != slap_schema.si_syn_distinguishedName ) {
if (value_match( &match, desc,
- /* desc->ad_type->sat_equality */ a->acl_attrval_mr, 0,
+ a->acl_attrval_mr, 0,
val, &a->acl_attrval, &text ) != LDAP_SUCCESS ||
match )
continue;
continue;
}
- if ( strcmp( a->acl_attrval.bv_val, val->bv_val + vdnlen - patlen ))
+ if ( strcmp( a->acl_attrval.bv_val, val->bv_val + vdnlen - patlen ) )
continue;
}
}