[
https://issues.apache.org/jira/browse/DIRMINA-667?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
John J. Franey updated DIRMINA-667:
-----------------------------------
Description:
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;
}
was:
This method does not close the DatagramChannel on exception, 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;
}
> 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
>
> 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.