Bug 219705 - crash when using IBM java plugin. r=blizzard, sr=shaver, a=leaf

git-svn-id: svn://10.0.0.236/trunk@150397 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
tor%cs.brown.edu
2003-12-17 19:49:44 +00:00
parent 2dfa1a70f7
commit 07eba649cc

View File

@@ -227,6 +227,11 @@ PRBool nsPluginNativeWindowGtk2::CanGetValueFromPlugin(nsCOMPtr<nsIPluginInstanc
if (PL_strcasecmp(jpiDescription + 92, "1.5") < 0)
return PR_FALSE;
}
if (PL_strncasecmp(jpiDescription, "IBM Java(TM) Plug-in", 20) == 0) {
// Java Plugin support Xembed from JRE 1.5
if (PL_strcasecmp(jpiDescription + 27, "1.5") < 0)
return PR_FALSE;
}
}
}
}