Skip to content
Snippets Groups Projects
Commit c696256c authored by Quanah Gibson-Mount's avatar Quanah Gibson-Mount
Browse files

ITS#6707

parent 686ab279
No related branches found
No related tags found
No related merge requests found
...@@ -10,6 +10,7 @@ OpenLDAP 2.4.24 Engineering ...@@ -10,6 +10,7 @@ OpenLDAP 2.4.24 Engineering
Fixed ldapsearch segfault with deref (ITS#6638) Fixed ldapsearch segfault with deref (ITS#6638)
Fixed slapd acl parsing overflow (ITS#6611) Fixed slapd acl parsing overflow (ITS#6611)
Fixed slapd modify to return actual error (ITS#6581) Fixed slapd modify to return actual error (ITS#6581)
Fixed slapd syncrepl reuse of presence list (ITS#6707)
Fixed slapd-bdb entry cache delete failure (ITS#6577) Fixed slapd-bdb entry cache delete failure (ITS#6577)
Fixed slapd-ndb to honor rootpw setting (ITS#6661) Fixed slapd-ndb to honor rootpw setting (ITS#6661)
Fixed slapd-meta anon retry with failed auth method (ITS#6643) Fixed slapd-meta anon retry with failed auth method (ITS#6643)
......
...@@ -1415,6 +1415,11 @@ do_syncrepl( ...@@ -1415,6 +1415,11 @@ do_syncrepl(
si->si_refreshDelete = 0; si->si_refreshDelete = 0;
si->si_refreshPresent = 0; si->si_refreshPresent = 0;
if ( si->si_presentlist ) {
avl_free( si->si_presentlist, ch_free );
si->si_presentlist = NULL;
}
/* use main DB when retrieving contextCSN */ /* use main DB when retrieving contextCSN */
op->o_bd = si->si_wbe; op->o_bd = si->si_wbe;
op->o_dn = op->o_bd->be_rootdn; op->o_dn = op->o_bd->be_rootdn;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment