Fixing bug 282447: patch from Attila Szegedi <szegedia@freemail.hu> to fix NullPointerException.

This commit is contained in:
igor%mir2.org 2005-02-16 12:11:42 +00:00
Родитель 69f348e3ed
Коммит 4130b9bffa
1 изменённых файлов: 6 добавлений и 3 удалений

Просмотреть файл

@ -893,9 +893,12 @@ WrapFactory#wrap(Context cx, Scriptable scope, Object obj, Class)}
static void reportConversionError(Object value, Class type)
{
throw Context.reportRuntimeError2
("msg.conversion.not.allowed",
value.toString(), JavaMembers.javaSignature(type));
// It uses String.valueOf(value), not value.toString() since
// value can be null, bug 282447.
throw Context.reportRuntimeError2(
"msg.conversion.not.allowed",
String.valueOf(value),
JavaMembers.javaSignature(type));
}
private void writeObject(ObjectOutputStream out)