Added java/Makefile.in, java/xpcom/TODO; minor correctoiosn to java/xpcom/README.

Fix libxpjava.so JNI and linking problems.


git-svn-id: svn://10.0.0.236/trunk@43324 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
frankm%eng.sun.com
1999-08-13 23:36:09 +00:00
parent 03c0e51424
commit 420a3aafbf
9 changed files with 169 additions and 18 deletions

View File

@@ -520,7 +520,7 @@ jboolean JObjectToVariant(JNIEnv *env,
if (env->IsInstanceOf(elem, classString)) {
jstring string = (jstring)elem;
jsize jstrlen = env->GetStringUTFLength(string);
const jbyte *utf = env->GetStringUTFChars(string, NULL);
const char *utf = env->GetStringUTFChars(string, NULL);
// PENDING: copying every time is wasteful, but
// we need to release `utf' before invocation loses it.