Skip to content
Snippets Groups Projects
Commit a875d7df authored by Howard Chu's avatar Howard Chu
Browse files

plug modrdn memleaks

parent 1bb48a06
Branches
Tags
No related merge requests found
......@@ -153,6 +153,7 @@ int ldbm_modify_internal(
rc = modify_add_values( e, mod, get_permissiveModify( op ),
text, textbuf, textlen );
mod->sm_op = SLAP_MOD_SOFTADD;
if ( rc == LDAP_TYPE_OR_VALUE_EXISTS ) {
rc = LDAP_SUCCESS;
}
......
......@@ -655,10 +655,16 @@ return_results:
if ( mod != NULL ) {
Modifications *tmp;
for (; mod; mod = tmp ) {
/* slap_modrdn2mods does things one way,
* slap_mods_opattrs does it differently
*/
if ( mod->sml_op != SLAP_MOD_SOFTADD &&
mod->sml_op != LDAP_MOD_DELETE ) break;
if ( mod->sml_nvalues ) free( mod->sml_nvalues[0].bv_val );
tmp = mod->sml_next;
free( mod );
}
slap_mods_free( mod );
}
/* LDAP v3 Support */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment