mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
ITS#5060 take care of entry cleanup when using
pblock_set(SLAPI_SEARCH_RESULT_ENTRY)
This commit is contained in:
parent
ae0c57a420
commit
4c4cb4921b
@ -1176,7 +1176,14 @@ pblock_set( Slapi_PBlock *pb, int param, void *value )
|
||||
break;
|
||||
case SLAPI_SEARCH_RESULT_ENTRY:
|
||||
PBLOCK_ASSERT_OP( pb, 0 );
|
||||
if ( pb->pb_rs->sr_flags & REP_ENTRY_MUSTBEFREED ) {
|
||||
entry_free( pb->pb_rs->sr_entry );
|
||||
} else if ( pb->pb_rs->sr_flags & REP_ENTRY_MUSTRELEASE ) {
|
||||
be_entry_release_r( pb->pb_op, pb->pb_rs->sr_entry );
|
||||
pb->pb_rs->sr_flags ^= REP_ENTRY_MUSTRELEASE;
|
||||
}
|
||||
pb->pb_rs->sr_entry = (Slapi_Entry *)value;
|
||||
pb->pb_rs->sr_flags |= REP_ENTRY_MUSTBEFREED;
|
||||
break;
|
||||
case SLAPI_BIND_RET_SASLCREDS:
|
||||
PBLOCK_ASSERT_OP( pb, 0 );
|
||||
|
Loading…
Reference in New Issue
Block a user