jon * wrote:
> 
> can i get a +1 on this change?
> 
> -jon

Well, I don't know. I was keping this thread in mind because I wanted to
try the solution. 
Did you try it ? Couldn't it give a fd leak later ?



Should this one work or not ?

                 if (servlet_writer != null) {
                     servlet_writer.close();
                 }
                 servlet_out.close();
                 out.close();

Jean-Luc


> >Fix:
> > From JServConnection.java...
> 
>                 if (servlet_writer != null) {
>                     servlet_writer.close();
>                 }
>                 out.close;
> 
> change to:
>                 if (servlet_writer != null) {
>                     servlet_writer.close();
>                 } else
>                     servlet_out.close();


--
----------------------------------------------------------
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
Archives and Other:  <http://java.apache.org/main/mail.html>
Problems?:           [EMAIL PROTECTED]

Reply via email to