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

More for ITS#5728

parent cca3864e
No related branches found
No related tags found
No related merge requests found
......@@ -1367,7 +1367,7 @@ rwm_send_entry( Operation *op, SlapReply *rs )
(void)rwm_attrs( op, rs, &e->e_attrs, 1 );
if ( rs->sr_flags & REP_ENTRY_MUSTRELEASE ) {
be_entry_release_rw( op, rs->sr_entry, 0 );
overlay_entry_release_ov( op, rs->sr_entry, 0, on );
}
rs->sr_entry = e;
......
......@@ -692,7 +692,7 @@ static int translucent_search_cb(Operation *op, SlapReply *rs) {
if ( re ) {
if ( rs->sr_flags & REP_ENTRY_MUSTRELEASE ) {
rs->sr_flags ^= REP_ENTRY_MUSTRELEASE;
be_entry_release_r( op, rs->sr_entry );
overlay_entry_release_ov( op, rs->sr_entry, 0, on );
}
if ( rs->sr_flags & REP_ENTRY_MUSTBEFREED ) {
rs->sr_flags ^= REP_ENTRY_MUSTBEFREED;
......@@ -726,7 +726,7 @@ static int translucent_search_cb(Operation *op, SlapReply *rs) {
re = entry_dup( rs->sr_entry );
if ( rs->sr_flags & REP_ENTRY_MUSTRELEASE ) {
rs->sr_flags ^= REP_ENTRY_MUSTRELEASE;
be_entry_release_r( op, rs->sr_entry );
overlay_entry_release_ov( op, rs->sr_entry, 0, on );
}
if ( rs->sr_flags & REP_ENTRY_MUSTBEFREED ) {
rs->sr_flags ^= REP_ENTRY_MUSTBEFREED;
......@@ -769,7 +769,7 @@ static int translucent_search_cb(Operation *op, SlapReply *rs) {
if ( tc->step & LCL_SIDE ) {
if ( rs->sr_flags & REP_ENTRY_MUSTRELEASE ) {
rs->sr_flags ^= REP_ENTRY_MUSTRELEASE;
be_entry_release_r( op, rs->sr_entry );
overlay_entry_release_ov( op, rs->sr_entry, 0, on );
}
if ( rs->sr_flags & REP_ENTRY_MUSTBEFREED ) {
rs->sr_flags ^= REP_ENTRY_MUSTBEFREED;
......
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