mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-22 23:59:34 -05:00
ITS#6746: Preserve error code, plug entry leak
This commit is contained in:
parent
022deb749a
commit
0aa8c028b3
1 changed files with 3 additions and 3 deletions
|
|
@ -1160,11 +1160,11 @@ static int translucent_search(Operation *op, SlapReply *rs) {
|
|||
av = tavl_end( tc.list, TAVL_DIR_LEFT );
|
||||
while ( av ) {
|
||||
rs->sr_entry = av->avl_data;
|
||||
rc = test_filter( op, rs->sr_entry, op->ors_filter );
|
||||
if ( rc == LDAP_COMPARE_TRUE ) {
|
||||
if ( rc == LDAP_SUCCESS && LDAP_COMPARE_TRUE ==
|
||||
test_filter( op, rs->sr_entry, op->ors_filter ))
|
||||
{
|
||||
rs->sr_flags = REP_ENTRY_MUSTBEFREED;
|
||||
rc = send_search_entry( op, rs );
|
||||
if ( rc ) break;
|
||||
} else {
|
||||
entry_free( rs->sr_entry );
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue