Fix for bug #76677. r=beard, sr=brendan, a=asa.

This commit is contained in:
beard%netscape.com 2001-04-20 06:20:42 +00:00
Родитель dfe73ef724
Коммит d80d6c5a2d
1 изменённых файлов: 8 добавлений и 4 удалений

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

@ -141,12 +141,16 @@ JVM_AddToClassPath(const char* dirPath)
static nsIJVMConsole*
GetConsole(void)
{
nsIJVMConsole* console = NULL;
// PENDING(edburns): workaround for bug 76677, make sure the JVM is
// started.
JNIEnv* env = JVM_GetJNIEnv();
if (!env)
return nsnull;
nsIJVMConsole* console = nsnull;
nsIJVMPlugin* jvm = GetRunningJVM();
if (jvm) {
if (jvm)
jvm->QueryInterface(kIJVMConsoleIID, (void**)&console);
// jvm->Release(); // GetRunningJVM no longer calls AddRef
}
return console;
}