diff --git a/servers/slapd/syncrepl.c b/servers/slapd/syncrepl.c index cf11fa07e0..5d2fdcf40d 100644 --- a/servers/slapd/syncrepl.c +++ b/servers/slapd/syncrepl.c @@ -1483,7 +1483,7 @@ syncrepl_del_nonpresent( Modifications *mlnext; Modifications *mod; Modifications *modlist = NULL; - Modifications **modtail = &modlist; + Modifications **modtail; AttributeName an[2]; struct berval pdn = BER_BVNULL; @@ -1543,6 +1543,7 @@ syncrepl_del_nonpresent( rc = op->o_bd->be_delete( op, &rs_delete ); if ( rs_delete.sr_err == LDAP_NOT_ALLOWED_ON_NONLEAF ) { + modtail = &modlist; mod = (Modifications *) ch_calloc( 1, sizeof( Modifications )); mod->sml_op = LDAP_MOD_REPLACE; mod->sml_desc = slap_schema.si_ad_objectClass;