/hg/release/icedtea7-forest-2.3/jaxp: 8015978: Incorrect transfo...

andrew at icedtea.classpath.org andrew at icedtea.classpath.org
Thu Oct 17 16:44:19 PDT 2013


changeset d186d96b9af8 in /hg/release/icedtea7-forest-2.3/jaxp
details: http://icedtea.classpath.org/hg/release/icedtea7-forest-2.3/jaxp?cmd=changeset;node=d186d96b9af8
author: aefimov
date: Wed Jul 24 15:21:29 2013 +0400

	8015978: Incorrect transformation of XPath expression "string(-0)"
	Reviewed-by: darcy, joehw


diffstat:

 src/com/sun/org/apache/xalan/internal/xsltc/runtime/BasisLibrary.java |  3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diffs (13 lines):

diff -r 1836b22ca25e -r d186d96b9af8 src/com/sun/org/apache/xalan/internal/xsltc/runtime/BasisLibrary.java
--- a/src/com/sun/org/apache/xalan/internal/xsltc/runtime/BasisLibrary.java	Wed Oct 16 17:09:25 2013 +0100
+++ b/src/com/sun/org/apache/xalan/internal/xsltc/runtime/BasisLibrary.java	Wed Jul 24 15:21:29 2013 +0400
@@ -955,6 +955,9 @@
             if (Double.isNaN(d) || Double.isInfinite(d))
                 return(Double.toString(d));
 
+            //Convert -0.0 to +0.0 other values remains the same
+            d = d + 0.0;
+
             // Use the XPath formatter to ignore locales
             StringBuffer result = threadLocalStringBuffer.get();
             result.setLength(0);


More information about the distro-pkg-dev mailing list