changeset 2042:28d51992e654

Fix latent JAXP bug by adding missing import. 2011-02-14 Andrew John Hughes <ahughes@redhat.com> * Makefile.am: Add patch. * NEWS: Updated. * patches/latent_jaxp_bug.patch: Add missing import.
author Andrew John Hughes <ahughes@redhat.com>
date Mon, 14 Feb 2011 12:22:36 +0000
parents 9d9eee71b94a
children 8da8c92b9067
files ChangeLog Makefile.am NEWS patches/latent_jaxp_bug.patch
diffstat 4 files changed, 20 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Sun Feb 13 21:32:11 2011 +0000
+++ b/ChangeLog	Mon Feb 14 12:22:36 2011 +0000
@@ -1,3 +1,10 @@
+2011-02-14  Andrew John Hughes  <ahughes@redhat.com>
+
+	* Makefile.am: Add patch.
+	* NEWS: Updated.
+	* patches/latent_jaxp_bug.patch:
+	Add missing import.
+
 2011-02-13  Andrew John Hughes  <ahughes@redhat.com>
 
 	* NEWS: Updated.
--- a/Makefile.am	Sun Feb 13 21:32:11 2011 +0000
+++ b/Makefile.am	Mon Feb 14 12:22:36 2011 +0000
@@ -392,7 +392,8 @@
 	patches/openjdk/6687968-pngimagereader_mem_leak.patch \
 	patches/openjdk/6541476-png-iTXt-chunk.patch \
 	patches/openjdk/6782079-png_metadata_oom.patch \
-	patches/rh676659-gcc-export-dynamic.patch
+	patches/rh676659-gcc-export-dynamic.patch \
+	patches/latent_jaxp_bug.patch
 
 if WITH_ALT_HSBUILD
 ICEDTEA_PATCHES += patches/hotspot/$(HSBUILD)/openjdk-6886353-ignore_deoptimizealot.patch \
--- a/NEWS	Sun Feb 13 21:32:11 2011 +0000
+++ b/NEWS	Mon Feb 14 12:22:36 2011 +0000
@@ -21,6 +21,7 @@
   - Vulnerability in permissions assigned to applets with multiple JARs
 * Bug fixes
   - RH676659: Pass -export-dynamic flag to linker using -Wl, as option in gcc 4.6+ is broken
+  - Fix latent JAXP bug caused by missing import
 
 New in release 1.7.9 (2011-02-09):
 
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/patches/latent_jaxp_bug.patch	Mon Feb 14 12:22:36 2011 +0000
@@ -0,0 +1,10 @@
+--- openjdk.orig/jaxp/src/share/classes/com/sun/org/apache/xerces/internal/jaxp/validation/ValidatorHandlerImpl.java	2009-10-14 18:13:41.000000000 +0100
++++ openjdk/jaxp/src/share/classes/com/sun/org/apache/xerces/internal/jaxp/validation/ValidatorHandlerImpl.java	2011-02-14 10:56:42.000000000 +0000
+@@ -47,6 +47,7 @@
+ import com.sun.org.apache.xerces.internal.util.SAXLocatorWrapper;
+ import com.sun.org.apache.xerces.internal.util.SAXMessageFormatter;
+ import com.sun.org.apache.xerces.internal.util.SymbolTable;
++import com.sun.org.apache.xerces.internal.util.SecurityManager;
+ import com.sun.org.apache.xerces.internal.util.URI;
+ import com.sun.org.apache.xerces.internal.util.XMLAttributesImpl;
+ import com.sun.org.apache.xerces.internal.util.XMLSymbols;