Did you see my comment about removing the subpool part from t/t/response/TestAPR/pool.pm "fixing" it?
(http://marc.theaimsgroup.com/?l=apache-modperl-dev&m=106424373602910&w=2)
Basically, this broke:
my $p = APR::Pool->new; my $subp = $p->new; $p->destroy;
but this worked:
my $p = APR::Pool->new; $p->destroy;
Dunno if there's anything in that.
Steve, can you please try replacing:
$p->destroy;
with:
$subp->destroy; $p->destroy;
__________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
