mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
Plug leak
This commit is contained in:
parent
883ac70a36
commit
d2f75ebaa5
@ -2208,6 +2208,8 @@ no_change: nochange = 1;
|
|||||||
if ( si->si_usehint && srs->sr_rhint == 0 ) {
|
if ( si->si_usehint && srs->sr_rhint == 0 ) {
|
||||||
if ( ctxcsn )
|
if ( ctxcsn )
|
||||||
ber_bvarray_free_x( ctxcsn, op->o_tmpmemctx );
|
ber_bvarray_free_x( ctxcsn, op->o_tmpmemctx );
|
||||||
|
if ( sids )
|
||||||
|
op->o_tmpfree( sids, op->o_tmpmemctx );
|
||||||
send_ldap_error( op, rs, LDAP_SYNC_REFRESH_REQUIRED, "sync cookie is stale" );
|
send_ldap_error( op, rs, LDAP_SYNC_REFRESH_REQUIRED, "sync cookie is stale" );
|
||||||
return rs->sr_err;
|
return rs->sr_err;
|
||||||
}
|
}
|
||||||
@ -2218,6 +2220,8 @@ no_change: nochange = 1;
|
|||||||
LDAP_SUCCESS ) {
|
LDAP_SUCCESS ) {
|
||||||
if ( ctxcsn )
|
if ( ctxcsn )
|
||||||
ber_bvarray_free_x( ctxcsn, op->o_tmpmemctx );
|
ber_bvarray_free_x( ctxcsn, op->o_tmpmemctx );
|
||||||
|
if ( sids )
|
||||||
|
op->o_tmpfree( sids, op->o_tmpmemctx );
|
||||||
send_ldap_result( op, rs );
|
send_ldap_result( op, rs );
|
||||||
return rs->sr_err;
|
return rs->sr_err;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user