/hg/release/icedtea-web-1.0: Fix RH665104: OpenJDK Firefox Java ...

dbhole at icedtea.classpath.org dbhole at icedtea.classpath.org
Wed Dec 22 14:17:50 PST 2010


changeset f8c085a5c7a2 in /hg/release/icedtea-web-1.0
details: http://icedtea.classpath.org/hg/release/icedtea-web-1.0?cmd=changeset;node=f8c085a5c7a2
author: Deepak Bhole <dbhole at redhat.com>
date: Wed Dec 22 17:14:44 2010 -0500

	Fix RH665104: OpenJDK Firefox Java plugin loses a cookie


diffstat:

3 files changed, 16 insertions(+), 3 deletions(-)
ChangeLog                                                     |    8 ++++++++
NEWS                                                          |    1 +
plugin/icedteanp/java/sun/applet/PluginCookieInfoRequest.java |   10 +++++++---

diffs (49 lines):

diff -r 460ec1f29d89 -r f8c085a5c7a2 ChangeLog
--- a/ChangeLog	Wed Dec 15 00:54:34 2010 +0000
+++ b/ChangeLog	Wed Dec 22 17:14:44 2010 -0500
@@ -1,3 +1,11 @@ 2010-12-14  Andrew John Hughes  <ahughes
+2010-12-22  Deepak Bhole <dbhole at redhat.com>
+
+	RH665104: OpenJDK Firefox Java plugin loses a cookie
+	* plugin/icedteanp/java/sun/applet/PluginCookieInfoRequest.java
+	(parseReturn): Skip one less space so that the first cookie is not
+	skipped.
+	* NEWS: Updated.
+
 2010-12-14  Andrew John Hughes  <ahughes at redhat.com>
 
 	* Makefile.am:
diff -r 460ec1f29d89 -r f8c085a5c7a2 NEWS
--- a/NEWS	Wed Dec 15 00:54:34 2010 +0000
+++ b/NEWS	Wed Dec 22 17:14:44 2010 -0500
@@ -23,6 +23,7 @@ New in release 1.0 (2010-XX-XX):
   - PR593: Increment of invalidated iterator in IcedTeaPluginUtils (patch from barbara.xxx1975 at libero.it)
   - PR597: Entities are parsed incorrectly in PARAM tag in applet plugin
   - Applets are now double-buffered to eliminate flicker in ones that do heavy drawing
+  - RH665104: OpenJDK Firefox Java plugin loses a cookie
 * NetX
   - Add a new option -Xclearcache
   - Interfaces javax.jnlp.IntegrationService and javax.jnlp.DownloadService2 are now available
diff -r 460ec1f29d89 -r f8c085a5c7a2 plugin/icedteanp/java/sun/applet/PluginCookieInfoRequest.java
--- a/plugin/icedteanp/java/sun/applet/PluginCookieInfoRequest.java	Wed Dec 15 00:54:34 2010 +0000
+++ b/plugin/icedteanp/java/sun/applet/PluginCookieInfoRequest.java	Wed Dec 22 17:14:44 2010 -0500
@@ -56,12 +56,16 @@ public class PluginCookieInfoRequest ext
 
         PluginDebug.debug("PluginCookieInfoRequest GOT: " + cookieInfo);
 
-        // Skip the first 5 components. We are guaranteed 5 components, 
-        // so no index -1 to worry about
+        // skip 'plugin' marker
         cookieInfo = cookieInfo.substring(cookieInfo.indexOf(' ') + 1);
+
+        // skip 'PluginCookieInfo' tag
         cookieInfo = cookieInfo.substring(cookieInfo.indexOf(' ') + 1);
+
+        // skip 'reference' tag
         cookieInfo = cookieInfo.substring(cookieInfo.indexOf(' ') + 1);
-        cookieInfo = cookieInfo.substring(cookieInfo.indexOf(' ') + 1);
+
+        // skip reference # and get the rest
         cookieString = cookieInfo.substring(cookieInfo.indexOf(' ') + 1);
 
         setDone(true);



More information about the distro-pkg-dev mailing list