From: Pierangelo Masarati Date: Sat, 27 Sep 2008 10:34:52 +0000 (+0000) Subject: fix previous commit (ITS#5711) X-Git-Tag: ACLCHECK_0~1313 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=7cc2acd111e39b107177f0f6feaad5df6af7425e;p=openldap fix previous commit (ITS#5711) --- diff --git a/servers/slapd/overlays/ppolicy.c b/servers/slapd/overlays/ppolicy.c index 36836c5127..99db2bd5b1 100644 --- a/servers/slapd/overlays/ppolicy.c +++ b/servers/slapd/overlays/ppolicy.c @@ -855,8 +855,7 @@ ctrls_cleanup( Operation *op, SlapReply *rs, LDAPControl **oldctrls ) for ( n = 0; rs->sr_ctrls[n]; n++ ) { if ( rs->sr_ctrls[n]->ldctl_oid == ppolicy_ctrl_oid ) { - ch_free( rs->sr_ctrls[n]->ldctl_value.bv_val ); - ch_free( rs->sr_ctrls[n] ); + op->o_tmpfree( rs->sr_ctrls[n], op->o_tmpmemctx ); rs->sr_ctrls[n] = (LDAPControl *)(-1); break; } @@ -2021,7 +2020,7 @@ return_results: if ( send_ctrl ) { if ( is_pwdexop ) { if ( rs->sr_flags & REP_CTRLS_MUSTBEFREED ) { - slap_free_ctrls( op, oldctrls ); + op->o_tmpfree( oldctrls, op->o_tmpmemctx ); } oldctrls = NULL; rs->sr_flags |= REP_CTRLS_MUSTBEFREED;