提交 27c2dcc3 编写于 作者: M michaelm

7091369: DatagramSocket/Limit.java failing on 8 and 7u2

Reviewed-by: chegar, alanb
上级 0e407989
......@@ -68,7 +68,12 @@ class TwoStacksPlainDatagramSocketImpl extends AbstractPlainDatagramSocketImpl
protected synchronized void create() throws SocketException {
fd1 = new FileDescriptor();
super.create();
try {
super.create();
} catch (IOException e) {
fd1 = null;
throw e;
}
}
protected synchronized void bind(int lport, InetAddress laddr)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册