/hg/release/icedtea7-forest-2.6/jaxp: 5 new changesets

andrew at icedtea.classpath.org andrew at icedtea.classpath.org
Mon Oct 19 08:23:30 UTC 2015


changeset 6a132b8d4f8c in /hg/release/icedtea7-forest-2.6/jaxp
details: http://icedtea.classpath.org/hg/release/icedtea7-forest-2.6/jaxp?cmd=changeset;node=6a132b8d4f8c
author: andrew
date: Mon Oct 19 08:39:37 2015 +0100

	Added tag icedtea-2.6.2pre01 for changeset a5f1374a4715


changeset 16820467723c in /hg/release/icedtea7-forest-2.6/jaxp
details: http://icedtea.classpath.org/hg/release/icedtea7-forest-2.6/jaxp?cmd=changeset;node=16820467723c
author: aefimov
date: Wed Jun 10 16:47:37 2015 +0300

	7156085, PR2674: ArrayIndexOutOfBoundsException throws in UTF8Reader of SAXParser
	Summary: improve support for supplementary characters
	Reviewed-by: joehw


changeset f0979449d30c in /hg/release/icedtea7-forest-2.6/jaxp
details: http://icedtea.classpath.org/hg/release/icedtea7-forest-2.6/jaxp?cmd=changeset;node=f0979449d30c
author: aefimov
date: Mon May 11 12:48:57 2015 +0300

	8062518, PR2674: AIOBE occurs when accessing to document function in extended function in JAXP
	Reviewed-by: joehw


changeset 4e264c1f6b2f in /hg/release/icedtea7-forest-2.6/jaxp
details: http://icedtea.classpath.org/hg/release/icedtea7-forest-2.6/jaxp?cmd=changeset;node=4e264c1f6b2f
author: aefimov
date: Sun May 31 18:54:58 2015 +0300

	8081392, PR2674: getNodeValue should return 'null' value for Element nodes
	Reviewed-by: joehw


changeset faa9edbc91dc in /hg/release/icedtea7-forest-2.6/jaxp
details: http://icedtea.classpath.org/hg/release/icedtea7-forest-2.6/jaxp?cmd=changeset;node=faa9edbc91dc
author: andrew
date: Mon Oct 19 09:22:51 2015 +0100

	Added tag icedtea-2.6.2pre02 for changeset 4e264c1f6b2f


diffstat:

 .hgtags                                                           |   2 ++
 src/com/sun/org/apache/xalan/internal/xsltc/dom/MultiDOM.java     |   8 ++++++--
 src/com/sun/org/apache/xerces/internal/impl/io/UTF8Reader.java    |  10 ++++++++++
 src/com/sun/org/apache/xml/internal/dtm/ref/DTMNodeProxy.java     |   2 +-
 src/com/sun/org/apache/xml/internal/dtm/ref/sax2dtm/SAX2DTM2.java |   6 +-----
 5 files changed, 20 insertions(+), 8 deletions(-)

diffs (75 lines):

diff -r a5f1374a4715 -r faa9edbc91dc .hgtags
--- a/.hgtags	Wed Oct 14 05:35:34 2015 +0100
+++ b/.hgtags	Mon Oct 19 09:22:51 2015 +0100
@@ -643,3 +643,5 @@
 e3b08dc13807041be60db2046da07882d6c8b478 icedtea-2.6-branchpoint
 ffbe529eeac7aa3b4cedd78be2f843c2f00f603c icedtea-2.6.1
 d42101f9c06eebe7722c38d84d5ef228c0280089 jdk7u85-b02
+a5f1374a47150e3cdda1cc9a8775417ceaa62657 icedtea-2.6.2pre01
+4e264c1f6b2f335e0068608e9ec4c312cddde7a4 icedtea-2.6.2pre02
diff -r a5f1374a4715 -r faa9edbc91dc src/com/sun/org/apache/xalan/internal/xsltc/dom/MultiDOM.java
--- a/src/com/sun/org/apache/xalan/internal/xsltc/dom/MultiDOM.java	Wed Oct 14 05:35:34 2015 +0100
+++ b/src/com/sun/org/apache/xalan/internal/xsltc/dom/MultiDOM.java	Mon Oct 19 09:22:51 2015 +0100
@@ -567,8 +567,12 @@
     }
 
     public NodeList makeNodeList(DTMAxisIterator iter) {
-        // TODO: gather nodes from all DOMs ?
-        return _main.makeNodeList(iter);
+        int index = iter.next();
+        if (index == DTM.NULL) {
+            return null;
+        }
+        iter.reset();
+        return _adapters[getDTMId(index)].makeNodeList(iter);
     }
 
     public String getLanguage(int node) {
diff -r a5f1374a4715 -r faa9edbc91dc src/com/sun/org/apache/xerces/internal/impl/io/UTF8Reader.java
--- a/src/com/sun/org/apache/xerces/internal/impl/io/UTF8Reader.java	Wed Oct 14 05:35:34 2015 +0100
+++ b/src/com/sun/org/apache/xerces/internal/impl/io/UTF8Reader.java	Mon Oct 19 09:22:51 2015 +0100
@@ -529,6 +529,16 @@
                     invalidByte(4, 4, b2);
                 }
 
+                // check if output buffer is large enough to hold 2 surrogate chars
+                if (out + 1 >= ch.length) {
+                    fBuffer[0] = (byte)b0;
+                    fBuffer[1] = (byte)b1;
+                    fBuffer[2] = (byte)b2;
+                    fBuffer[3] = (byte)b3;
+                    fOffset = 4;
+                    return out - offset;
+                }
+
                 // decode bytes into surrogate characters
                 int uuuuu = ((b0 << 2) & 0x001C) | ((b1 >> 4) & 0x0003);
                 if (uuuuu > 0x10) {
diff -r a5f1374a4715 -r faa9edbc91dc src/com/sun/org/apache/xml/internal/dtm/ref/DTMNodeProxy.java
--- a/src/com/sun/org/apache/xml/internal/dtm/ref/DTMNodeProxy.java	Wed Oct 14 05:35:34 2015 +0100
+++ b/src/com/sun/org/apache/xml/internal/dtm/ref/DTMNodeProxy.java	Mon Oct 19 09:22:51 2015 +0100
@@ -2116,7 +2116,7 @@
      */
     @Override
     public String getTextContent() throws DOMException {
-        return getNodeValue();  // overriden in some subclasses
+        return dtm.getStringValue(node).toString();
     }
 
      /**
diff -r a5f1374a4715 -r faa9edbc91dc src/com/sun/org/apache/xml/internal/dtm/ref/sax2dtm/SAX2DTM2.java
--- a/src/com/sun/org/apache/xml/internal/dtm/ref/sax2dtm/SAX2DTM2.java	Wed Oct 14 05:35:34 2015 +0100
+++ b/src/com/sun/org/apache/xml/internal/dtm/ref/sax2dtm/SAX2DTM2.java	Mon Oct 19 09:22:51 2015 +0100
@@ -3145,11 +3145,7 @@
                                   m_data.elementAt(-dataIndex+1));
       }
     }
-    else if (DTM.ELEMENT_NODE == type)
-    {
-      return getStringValueX(nodeHandle);
-    }
-    else if (DTM.DOCUMENT_FRAGMENT_NODE == type
+    else if (DTM.ELEMENT_NODE == type || DTM.DOCUMENT_FRAGMENT_NODE == type
              || DTM.DOCUMENT_NODE == type)
     {
       return null;


More information about the distro-pkg-dev mailing list