From: Howard Chu Date: Mon, 2 Apr 2007 21:27:36 +0000 (+0000) Subject: ITS#4904 fix from HEAD delta-sync modlist free X-Git-Tag: OPENLDAP_REL_ENG_2_3_35~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2a72be32218ba065ed982b94854a155e88cfd105;p=thirdparty%2Fopenldap.git ITS#4904 fix from HEAD delta-sync modlist free --- diff --git a/servers/slapd/syncrepl.c b/servers/slapd/syncrepl.c index ffe7323455..de124ea18c 100644 --- a/servers/slapd/syncrepl.c +++ b/servers/slapd/syncrepl.c @@ -1382,6 +1382,7 @@ syncrepl_message_to_op( } else { op->orm_modlist = modlist; rc = op->o_bd->be_modify( op, &rs ); + modlist = op->orm_modlist; Debug( rc ? LDAP_DEBUG_ANY : LDAP_DEBUG_SYNC, "syncrepl_message_to_op: rid %03d be_modify %s (%d)\n", si->si_rid, op->o_req_dn.bv_val, rc );