Bug 1174386 - Fix a rebase-induced pointer-to-bool conversion error. r=bustage in a CLOSED TREE

This commit is contained in:
Jeff Walden 2016-08-16 09:08:00 -07:00
Родитель 423fb81bd4
Коммит c07ca36127
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -760,7 +760,7 @@ InitJSContextForWorker(WorkerPrivate* aWorkerPrivate, JSContext* aWorkerCx)
if (!JS_SetDefaultLocale(aWorkerCx, defaultLocale.get())) {
NS_WARNING("failed to set workerCx's default locale");
return nullptr;
return false;
}
}