/hg/icedtea-web: Fix liveconnect regression from commit ee92f55c...

aazores at icedtea.classpath.org aazores at icedtea.classpath.org
Fri Jan 17 08:37:27 PST 2014


changeset 7d81c9104471 in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=7d81c9104471
author: Andrew Azores <aazores at redhat.com>
date: Fri Jan 17 11:36:22 2014 -0500

	Fix liveconnect regression from commit ee92f55c69a3

	http://mail.openjdk.java.net/pipermail/distro-pkg-dev/2014-January/025764.html
	* plugin/icedteanp/IcedTeaScriptablePluginObject.cc: (hasMethod) fixed
	regression from rev 757:ee92f55c69a3


diffstat:

 ChangeLog                                         |  7 +++++++
 plugin/icedteanp/IcedTeaScriptablePluginObject.cc |  2 +-
 2 files changed, 8 insertions(+), 1 deletions(-)

diffs (26 lines):

diff -r acbfbaefe7aa -r 7d81c9104471 ChangeLog
--- a/ChangeLog	Thu Jan 16 16:21:55 2014 +0100
+++ b/ChangeLog	Fri Jan 17 11:36:22 2014 -0500
@@ -1,3 +1,10 @@
+2014-01-17  Andrew Azores  <aazores at redhat.com>
+
+	Fixes JS reproducer regression.
+	http://mail.openjdk.java.net/pipermail/distro-pkg-dev/2014-January/025764.html
+	* plugin/icedteanp/IcedTeaScriptablePluginObject.cc: (hasMethod) fixed
+	regression from rev 757:ee92f55c69a3
+
 2014-01-16  Jiri Vanek  <jvanek at redhat.com>
 
 	Reproducers stabilization by removing check for not presented general Exception
diff -r acbfbaefe7aa -r 7d81c9104471 plugin/icedteanp/IcedTeaScriptablePluginObject.cc
--- a/plugin/icedteanp/IcedTeaScriptablePluginObject.cc	Thu Jan 16 16:21:55 2014 +0100
+++ b/plugin/icedteanp/IcedTeaScriptablePluginObject.cc	Fri Jan 17 11:36:22 2014 -0500
@@ -474,7 +474,7 @@
     bool hasMethod = false;
 
     // If object is an array and requested "method" may be a number, check for it first
-    if ( scriptable_object->is_object_array  ||
+    if ( !scriptable_object->is_object_array  ||
          (browser_functions.intfromidentifier(name_id) < 0))
     {
 


More information about the distro-pkg-dev mailing list