Fix the asset for bug 1112920 to not touch uninitialized memory. Totally my fault, since I moved it above the mCx assignment, and now we have a CLOSED TREE.

This commit is contained in:
Boris Zbarsky 2016-03-09 23:17:10 -05:00
Родитель a8f43cb473
Коммит 58fe6d3754
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -334,7 +334,7 @@ AutoJSAPI::InitInternal(JSObject* aGlobal, JSContext* aCx, bool aIsMainThread)
{
MOZ_ASSERT(aCx);
MOZ_ASSERT(aIsMainThread == NS_IsMainThread());
MOZ_ASSERT(!JS_IsExceptionPending(mCx));
MOZ_ASSERT(!JS_IsExceptionPending(aCx));
mCx = aCx;
mIsMainThread = aIsMainThread;