public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
* libgcj/9684: java.lang.Socket leaks file desciptors on a connection timeout
@ 2003-02-13  3:16 gladish
  0 siblings, 0 replies; only message in thread
From: gladish @ 2003-02-13  3:16 UTC (permalink / raw)
  To: gcc-gnats


>Number:         9684
>Category:       libgcj
>Synopsis:       java.lang.Socket leaks file desciptors on a connection timeout
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    unassigned
>State:          open
>Class:          sw-bug
>Submitter-Id:   net
>Arrival-Date:   Thu Feb 13 03:16:00 UTC 2003
>Closed-Date:
>Last-Modified:
>Originator:     gladish@spinnakernet.com
>Release:        gcj-3.1
>Organization:
>Environment:
redhat linux
>Description:
When using any of the public constructors that call the connect() method, an exception may be thrown if the connect() times out, which results in a leaked open file descriptor.
>How-To-Repeat:

>Fix:
48c48,53
<     impl.connect(host, port);
---
>     try {
>       impl.connect(host, port);
>     } catch (IOException e) {
>       impl.close();
>       throw e;
>     }
62c67,72
<     impl.connect(address, port);
---
>     try {
>       impl.connect(address, port);
>     } catch (IOException e) {
>         impl.close();
>         throw e;
>     }
74,75c84,90
<     impl.bind(localAddr, localPort);
<     impl.connect(host, port);
---
>     try {
>       impl.bind(localAddr, localPort);
>       impl.connect(host, port);
>     } catch (IOException e) {
>       impl.close();
>       throw e;
>     }
87,88c102,108
<     impl.bind(localAddr, localPort);
<     impl.connect(address, port);
---
>     try {
>       impl.bind(localAddr, localPort);
>       impl.connect(address, port);
>     } catch (IOException e) {
>       impl.close();
>       throw e;
>     }
98d117
<     impl.create(stream);
101a121
>     impl.create(stream);
105c125,130
<     impl.connect(host, port);
---
>     try {
>       impl.connect(host, port);
>     } catch (IOException e) {
>       impl.close();
>       throw e;
>     }
115d139
<     impl.create(stream);
118a143
>     impl.create(stream);
122c147,152
<     impl.connect(host, port);
---
>     try {
>       impl.connect(host, port);
>     } catch (IOException e) {
>       impl.close();
>       throw e;
>     }
>Release-Note:
>Audit-Trail:
>Unformatted:


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2003-02-13  3:16 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-02-13  3:16 libgcj/9684: java.lang.Socket leaks file desciptors on a connection timeout gladish

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).