Fixed slapd-meta search cleanup
Fixed slapd-meta/slapo-rwm filter mapping
Fixed slapd-sql subtree shortcut (ITS#4856)
+ Fixed slapo-dynlist crasher (ITS#4891)
Fixed slapo-refint config message (ITS#4853)
Fixed libldap time_t signedness (ITS#4872)
Fixed libldap_r tpool reset (ITS#4855)
if ( !BER_BVISNULL( &o.o_req_ndn ) ) {
op->o_tmpfree( o.o_req_ndn.bv_val, op->o_tmpmemctx );
}
- assert( o.ors_filterstr.bv_val != lud->lud_filter );
+ assert( BER_BVISNULL( &o.ors_filterstr )
+ || o.ors_filterstr.bv_val != lud->lud_filter );
op->o_tmpfree( o.ors_filterstr.bv_val, op->o_tmpmemctx );
ldap_free_urldesc( lud );
}