[RFC] One line fix for PR763
Deepak Bhole
dbhole at redhat.com
Fri Jul 22 10:30:24 PDT 2011
Hi,
Attached is a simple fix for PR763. Okay for HEAD and 1.0/1.1?
ChangeLog:
2011-07-22 Deepak Bhole <dbhole at redhat.com>
PR763: Oanda 's online trading app doesn't run on linux
* netx/net/sourceforge/jnlp/runtime/JNLPSecurityManager.java
(checkExit): Print exit-access-denied message to stderr rather than
throwing an exception.
Cheers,
Deepak
-------------- next part --------------
diff -r 6bfd819570c1 NEWS
--- a/NEWS Thu Jul 21 15:11:38 2011 -0400
+++ b/NEWS Fri Jul 22 13:27:52 2011 -0400
@@ -14,6 +14,7 @@
- RH718170, CVE-2011-2514: Java Web Start security warning dialog manipulation
* Plugin
- PR749: sun.applet.PluginStreamHandler#handleMessage(String) really slow
+ - PR763: Oanda's online trading app doesn't run on linux
New in release 1.1 (2011-XX-XX):
* Security updates
diff -r 6bfd819570c1 netx/net/sourceforge/jnlp/runtime/JNLPSecurityManager.java
--- a/netx/net/sourceforge/jnlp/runtime/JNLPSecurityManager.java Thu Jul 21 15:11:38 2011 -0400
+++ b/netx/net/sourceforge/jnlp/runtime/JNLPSecurityManager.java Fri Jul 22 13:27:52 2011 -0400
@@ -449,8 +449,10 @@
Class stack[] = getClassContext();
if (!exitAllowed) {
for (int i = 0; i < stack.length; i++)
- if (stack[i].getClassLoader() != null)
- throw new AccessControlException("Applets may not call System.exit()");
+ if (stack[i].getClassLoader() != null) {
+ System.err.println("Applets may not call System.exit()");
+ return;
+ }
}
super.checkExit(status);
More information about the distro-pkg-dev
mailing list