Skip to content
Snippets Groups Projects
Commit c7d4f284 authored by Jong Hyuk Choi's avatar Jong Hyuk Choi
Browse files

back out prev commit

parent e4d199d7
Branches
Tags
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment