Author: markt
Date: Tue Jul 30 09:03:21 2013
New Revision: 1508346
URL: http://svn.apache.org/r1508346
Log:
NIO endpoint should not be swallowing Virtual machine errors
Modified:
tomcat/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java
Modified: tomcat/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java
URL:
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java?rev=1508346&r1=1508345&r2=1508346&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java (original)
+++ tomcat/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java Tue Jul 30
09:03:21 2013
@@ -1644,6 +1644,8 @@ public class NioEndpoint extends Abstrac
ExceptionUtils.handleThrowable(letsHopeWeDontGetHere);
}
}
+ } catch (VirtualMachineError vme) {
+ ExceptionUtils.handleThrowable(vme);
}catch ( Throwable t ) {
log.error("",t);
if (socket != null) {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]