Bug 565595 glob is used uninitialized in XPCJSContextStack::GetSafeJSContext when JS_NewContext fails. r=jorendorff

--HG--
extra : rebase_source : 352876a6e35a7c811a0218f6a238fd602447e235
This commit is contained in:
timeless@mozdev.org 2010-05-23 15:38:35 -07:00
Родитель df4ee569d6
Коммит 31f29cc65b
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -283,7 +283,7 @@ XPCJSContextStack::GetSafeJSContext(JSContext * *aSafeJSContext)
}
}
if(!glob && mSafeJSContext)
if(mSafeJSContext && !glob)
{
// Destroy the context outside the scope of JSAutoRequest that
// uses the context in its destructor.