зеркало из https://github.com/mozilla/pjs.git
fixes bug 243429 "XPCOM_BREAK_ON_LOAD no longer works" patch by makotoy@ms.u-tokyo.ac.jp, r+sr=darin
This commit is contained in:
Родитель
b11815e679
Коммит
5a0bf2b761
|
@ -158,7 +158,7 @@ nsNativeModuleLoader::LoadModule(nsILocalFile* aFile, nsIModule* *aResult)
|
|||
if (env && *env && (blist = strdup(env))) {
|
||||
char *nextTok = blist;
|
||||
while (char *token = NS_strtok(":", &nextTok)) {
|
||||
if (leafName.Find(token, PR_TRUE)) {
|
||||
if (leafName.Find(token, PR_TRUE) != kNotFound) {
|
||||
NS_BREAK();
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче