Add some curly braces so that the rest of the world can run.

This commit is contained in:
waterson%netscape.com 1999-09-21 04:20:17 +00:00
Родитель 424269469f
Коммит fdc0f0beb3
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -189,10 +189,11 @@ mozJSComponentLoader::Init(nsIComponentManager *aCompMgr, nsISupports *aReg)
if (NS_FAILED(rv))
return rv;
if (NS_FAILED(rv = rtsvc->GetRuntime(&mRuntime)))
if (NS_FAILED(rv = rtsvc->GetRuntime(&mRuntime))) {
#ifdef DEBUG_shaver
fprintf(stderr, "mJCL: runtime initialized!\n");
#endif
}
mContext = JS_NewContext(mRuntime, 8192 /* pref? */);
if (!mContext)