mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 08:39:37 -05:00
Fix invalid attributes in translucent_modify
This commit is contained in:
parent
5bb325054e
commit
7fd2e65386
1 changed files with 1 additions and 1 deletions
|
|
@ -424,7 +424,7 @@ release:
|
|||
}
|
||||
a = attr_alloc( m->sml_desc );
|
||||
a->a_vals = m->sml_values;
|
||||
a->a_nvals = m->sml_nvalues;
|
||||
a->a_nvals = m->sml_nvalues ? m->sml_nvalues : a->a_vals;
|
||||
a->a_next = ax;
|
||||
ax = a;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue