+2008-04-19 Tom Tromey <tromey@redhat.com>
+
+ PR libgcj/35979:
+ * jni.cc (_Jv_JNI_NewStringUTF): Return NULL if bytes==NULL.
+
2008-04-18 Paolo Bonzini <bonzini@gnu.org>
PR bootstrap/35457
// jni.cc - JNI implementation, including the jump table.
-/* Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
+/* Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
Free Software Foundation
This file is part of libgcj.
{
try
{
+ // For compatibility with the JDK.
+ if (!bytes)
+ return NULL;
jstring result = JvNewStringUTF (bytes);
return (jstring) wrap_value (env, result);
}