Re: [PATCH] small fix for ServerSocket close

2003-11-19 Thread Michael Koch
On Thu, Nov 13, 2003 at 03:35:47PM +0100, Dalibor Topic wrote: Hi all, attached is a small fix for ServerSocket's close method. It fixes a NullPointerException when attempting to close a ServerSocket twice. 2003-11-13 Guilhem Lavaux [EMAIL PROTECTED] * java/net/ServerSocket.java:

Re: [PATCH] small fix for ServerSocket close

2003-11-19 Thread Dalibor Topic
Dalibor Topic wrote: Hi Michael, Michael Koch wrote: --- /var/tmp/PROJECTS/classpath//./java/net/ServerSocket.javaFri Oct 17 19:05:29 2003 +++ java/net/ServerSocket.javaWed Oct 22 21:32:21 2003 @@ -339,7 +339,8 @@ */ public void close () throws IOException { -impl.close (); +

Re: [PATCH] small fix for ServerSocket close

2003-11-19 Thread Mark Wielaard
Hi, On Wed, 2003-11-19 at 14:13, Michael Koch wrote: --- /var/tmp/PROJECTS/classpath//./java/net/ServerSocket.java Fri Oct 17 19:05:29 2003 +++ java/net/ServerSocket.java Wed Oct 22 21:32:21 2003 @@ -339,7 +339,8 @@ */ public void close () throws IOException {

Re: [PATCH] small fix for ServerSocket close

2003-11-19 Thread Tom Tromey
Mark == Mark Wielaard [EMAIL PROTECTED] writes: Mark I hope that I can cleanup Mauve enough before next week (when we Mark will create the 0.07 snapshot release) to activate a autobuilder Mark which we can use to track failures. But Currently Mauve is still Mark to fragile for this. FWIW, I run

Re: [PATCH] small fix for ServerSocket close

2003-11-14 Thread Mark Wielaard
Hi, On Fri, 2003-11-14 at 05:16, Brian Jones wrote: Michael Koch [EMAIL PROTECTED] writes: I think it would be really nice i you could commit this to libgcj too. This class is totally merged. Just out of my curiosity, how does that whole process work? libgcj and GNU Classpath are

[PATCH] small fix for ServerSocket close

2003-11-13 Thread Dalibor Topic
Hi all, attached is a small fix for ServerSocket's close method. It fixes a NullPointerException when attempting to close a ServerSocket twice. 2003-11-13 Guilhem Lavaux [EMAIL PROTECTED] * java/net/ServerSocket.java: (close) Check if server socket has already been released,

Re: [PATCH] small fix for ServerSocket close

2003-11-13 Thread Mark Wielaard
Hi, On Thu, 2003-11-13 at 15:35, Dalibor Topic wrote: attached is a small fix for ServerSocket's close method. It fixes a NullPointerException when attempting to close a ServerSocket twice. Thanks. Checked in as obvious. Only slightly reformatted the ChangeLog entry. 2003-11-13 Guilhem

Re: [PATCH] small fix for ServerSocket close

2003-11-13 Thread Michael Koch
On Thu, Nov 13, 2003 at 06:47:30PM +0100, Mark Wielaard wrote: Hi, On Thu, 2003-11-13 at 15:35, Dalibor Topic wrote: attached is a small fix for ServerSocket's close method. It fixes a NullPointerException when attempting to close a ServerSocket twice. Thanks. Checked in as obvious.

Re: [PATCH] small fix for ServerSocket close

2003-11-13 Thread Brian Jones
Michael Koch [EMAIL PROTECTED] writes: I think it would be really nice i you could commit this to libgcj too. This class is totally merged. Just out of my curiosity, how does that whole process work? Brian -- Brian Jones [EMAIL PROTECTED] ___