changeset in /hg/icedtea6: Forgo permission check if JS source i...

Deepak Bhole dbhole at redhat.com
Thu Apr 30 13:29:46 PDT 2009


changeset afe7df786dd4 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=afe7df786dd4
description:
	Forgo permission check if JS source is [System] (i.e. Mozilla extension/chrome).

diffstat:

2 files changed, 6 insertions(+), 1 deletion(-)
ChangeLog                                                  |    5 +++++
plugin/icedtea/sun/applet/PluginAppletSecurityContext.java |    2 +-

diffs (24 lines):

diff -r 4e5fd2efe6af -r afe7df786dd4 ChangeLog
--- a/ChangeLog	Thu Apr 30 16:04:37 2009 +0200
+++ b/ChangeLog	Thu Apr 30 16:31:55 2009 -0400
@@ -1,3 +1,8 @@ 2009-04-30  Matthias Klose  <doko at ubuntu
+2009-04-30 Deepak Bhole <dbhole at redhat.com>
+
+	* plugin/icedtea/sun/applet/PluginAppletSecurityContext.java: Forgo
+	permission check if JS source is [System] (i.e. Mozilla extension/chrome).
+
 2009-04-30  Matthias Klose  <doko at ubuntu.com>
 
 	* Makefile.am: Update cacao version to 0.99.4.
diff -r 4e5fd2efe6af -r afe7df786dd4 plugin/icedtea/sun/applet/PluginAppletSecurityContext.java
--- a/plugin/icedtea/sun/applet/PluginAppletSecurityContext.java	Thu Apr 30 16:04:37 2009 +0200
+++ b/plugin/icedtea/sun/applet/PluginAppletSecurityContext.java	Thu Apr 30 16:31:55 2009 -0400
@@ -1001,7 +1001,7 @@ public class PluginAppletSecurityContext
 		PluginDebug.debug("target = " + target + " jsSrc=" + jsSrc + " classSrc=" + classSrc);
 		
 		// if src is not a file and class loader does not map to the same base, UniversalBrowserRead (BrowserReadPermission) must be set
-		if (jsSrc != "file://" && !classSrc.equals(jsSrc)) {
+		if (!jsSrc.equals("file://") && !jsSrc.equals("[System]") && !classSrc.equals(jsSrc)) {
 			acc.checkPermission(new BrowserReadPermission());
 		}
 	}



More information about the distro-pkg-dev mailing list