Skip to content
Snippets Groups Projects
Commit 18fc3548 authored by Pierangelo Masarati's avatar Pierangelo Masarati
Browse files

fix test in case of bailout (ITS#4891)

parent d9958cbd
Branches
Tags
No related merge requests found
......@@ -489,7 +489,8 @@ cleanup:;
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 );
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment