[
https://issues.apache.org/jira/browse/DIRMINA-667?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Emmanuel Lecharny resolved DIRMINA-667.
---------------------------------------
Resolution: Fixed
Fix Version/s: 2.0.0-RC1
Fixed in http://svn.apache.org/viewvc?rev=751514&view=rev
Thanks for pointing out the issue !
> NioDatagramConnector.newHandle leaks DatagramChannels on bind exception
> -----------------------------------------------------------------------
>
> Key: DIRMINA-667
> URL: https://issues.apache.org/jira/browse/DIRMINA-667
> Project: MINA
> Issue Type: Bug
> Components: Core
> Affects Versions: 2.0.0-M4
> Reporter: John J. Franey
> Assignee: Emmanuel Lecharny
> Fix For: 2.0.0-RC1
>
>
> This method does not close the DatagramChannel on exception in bind, and the
> reference is not recoverable by its caller.
> @Override
> protected DatagramChannel newHandle(SocketAddress localAddress)
> throws Exception {
> DatagramChannel ch = DatagramChannel.open();
> if (localAddress != null) {
> ch.socket().bind(localAddress);
> }
> return ch;
> }
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.