mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-25 09:09:54 -05:00
back out prev commit
This commit is contained in:
parent
e4d199d7bb
commit
c7d4f2841e
1 changed files with 8 additions and 0 deletions
|
|
@ -425,6 +425,10 @@ slap_mods2entry(
|
|||
AC_MEMCPY( &attr->a_vals[i], mods->sml_values,
|
||||
sizeof( struct berval ) * j );
|
||||
|
||||
/* trim the mods array */
|
||||
ch_free( mods->sml_values );
|
||||
mods->sml_values = NULL;
|
||||
|
||||
if( mods->sml_nvalues ) {
|
||||
attr->a_nvals = ch_realloc( attr->a_nvals,
|
||||
sizeof( struct berval ) * (i+j) );
|
||||
|
|
@ -432,6 +436,10 @@ slap_mods2entry(
|
|||
AC_MEMCPY( &attr->a_nvals[i], mods->sml_nvalues,
|
||||
sizeof( struct berval ) * j );
|
||||
|
||||
/* trim the mods array */
|
||||
ch_free( mods->sml_nvalues );
|
||||
mods->sml_nvalues = NULL;
|
||||
|
||||
} else {
|
||||
attr->a_nvals = attr->a_vals;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue