/hg/icedtea6: Fixed PR519 (patch from dnietoc at gmail.com)

dbhole at icedtea.classpath.org dbhole at icedtea.classpath.org
Wed Sep 29 13:41:08 PDT 2010


changeset 674b1799df8c in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=674b1799df8c
author: Deepak Bhole <dbhole at redhat.com>
date: Wed Sep 29 13:37:46 2010 -0700

	Fixed PR519 (patch from dnietoc at gmail.com)


diffstat:

3 files changed, 9 insertions(+), 1 deletion(-)
ChangeLog                           |    7 +++++++
NEWS                                |    1 +
plugin/icedteanp/IcedTeaNPPlugin.cc |    2 +-

diffs (37 lines):

diff -r 98ada0ecdf29 -r 674b1799df8c ChangeLog
--- a/ChangeLog	Wed Sep 29 20:37:24 2010 +0100
+++ b/ChangeLog	Wed Sep 29 13:37:46 2010 -0700
@@ -1,3 +1,10 @@ 2010-09-29  Andrew John Hughes  <ahughes
+2010-09-29  Deepak Bhole <dbhole at redhat.com>
+	
+	Fixed PR519 (patch from dnietoc at gmail.com).
+	* plugin/icedteanp/IcedTeaNPPlugin.cc: Have ITNP_NewStream return
+	NPERR_GENERIC_ERROR instead of NPERR_NO_ERROR.
+	* NEWS: Updated accordingly.
+
 2010-09-29  Andrew John Hughes  <ahughes at redhat.com>
 
 	* Makefile.am:
diff -r 98ada0ecdf29 -r 674b1799df8c NEWS
--- a/NEWS	Wed Sep 29 20:37:24 2010 +0100
+++ b/NEWS	Wed Sep 29 13:37:46 2010 -0700
@@ -21,6 +21,7 @@ New in release 1.10 (2010-XX-XX):
 * Plugin  
   - PR556: Applet initialization code is prone to race conditions
   - PR557: Applet opens in a separate window if tab is closed when the applet loads
+  - PR519: 100% CPU usage when displaying applets in Webkit based browsers
 
 New in release 1.9 (2010-09-07):
 
diff -r 98ada0ecdf29 -r 674b1799df8c plugin/icedteanp/IcedTeaNPPlugin.cc
--- a/plugin/icedteanp/IcedTeaNPPlugin.cc	Wed Sep 29 20:37:24 2010 +0100
+++ b/plugin/icedteanp/IcedTeaNPPlugin.cc	Wed Sep 29 13:37:46 2010 -0700
@@ -797,7 +797,7 @@ ITNP_NewStream (NPP instance, NPMIMEType
 
   PLUGIN_DEBUG ("ITNP_NewStream return\n");
 
-  return NPERR_NO_ERROR;
+  return NPERR_GENERIC_ERROR;
 }
 
 void



More information about the distro-pkg-dev mailing list