changeset 1735:820a1a20046c

Remove icedtea-messageutils.patch. In b17 as 6852607: MessageUtils JVM crash. 2009-10-19 Mark Wielaard <mjw@redhat.com> * patches/icedtea-messageutils.patch: Removed. Applied in b17 as 6852607: MessageUtils JVM crash. * Makefile.am (ICEDTEA_PATCHES): Remove patches/icedtea-messageutils.patch.
author Mark Wielaard <mark@klomp.org>
date Mon, 19 Oct 2009 10:30:42 +0200
parents 2673464ac328
children 39976f8fb2fb
files ChangeLog Makefile.am patches/icedtea-messageutils.patch
diffstat 3 files changed, 7 insertions(+), 15 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Sun Oct 18 21:42:53 2009 +0100
+++ b/ChangeLog	Mon Oct 19 10:30:42 2009 +0200
@@ -1,3 +1,10 @@
+2009-10-19  Mark Wielaard  <mjw@redhat.com>
+
+	* patches/icedtea-messageutils.patch: Removed. Applied in b17 as
+	6852607: MessageUtils JVM crash.
+	* Makefile.am (ICEDTEA_PATCHES): Remove
+	patches/icedtea-messageutils.patch.
+
 2009-10-16  Andrew John Hughes  <ahughes@redhat.com>
 
 	* Makefile.am:
--- a/Makefile.am	Sun Oct 18 21:42:53 2009 +0100
+++ b/Makefile.am	Mon Oct 19 10:30:42 2009 +0200
@@ -607,7 +607,6 @@
 	$(GCC_PATCH) \
 	patches/icedtea-arch.patch \
 	patches/icedtea-lc_ctype.patch \
-	patches/icedtea-messageutils.patch \
 	patches/icedtea-xjc.patch \
 	patches/icedtea-renderer-crossing.patch \
 	patches/icedtea-stroker-finish.patch \
--- a/patches/icedtea-messageutils.patch	Sun Oct 18 21:42:53 2009 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,14 +0,0 @@
---- oldMessageUtils.c	2009-06-25 16:39:27.000000000 -0400
-+++ openjdk/jdk/src/share/native/sun/misc/MessageUtils.c	2009-06-25 16:40:14.000000000 -0400
-@@ -39,6 +39,11 @@
-     int i;
-     const jchar *sAsArray;
- 
-+    if (s == NULL) {
-+      s = (*env)->NewStringUTF(env, "null");
-+      if (s == NULL) return;
-+    }
-+
-     sAsArray = (*env)->GetStringChars(env, s, NULL);
-     length = (*env)->GetStringLength(env, s);
-     sConverted = (char *) malloc(length + 1);