What about Tomcat 3.2.3 ? There are the same lines of
code...

--- "Schreibman, David" <[EMAIL PROTECTED]>
wrote:
> Here's a simple tweak that clears out references to
> objects that are removed
> from the pool.  The current code can delay garbage
> collection for objects
> that are removed from the pool but not returned.
> 
> The diff is against 3.3-rc1
> 
> -David
> 
> > --- SimplePool.java.orig    Thu Oct  4 10:14:51 2001
> +++ SimplePool.java   Thu Oct  4 10:54:08 2001
> @@ -132,6 +132,7 @@
>       synchronized( lock ) {
>           if( current >= 0 ) {
>               item = pool[current];
> +             pool[current] = null;
>               current -= 1;
>           }
>           if( debug > 0 ) 
> 


__________________________________________________
Do You Yahoo!?
NEW from Yahoo! GeoCities - quick and easy web site hosting, just $8.95/month.
http://geocities.yahoo.com/ps/info1

Reply via email to