Bug 512589 - Initialize some more members. r=peterv sr=peterv

This commit is contained in:
Blake Kaplan 2009-08-27 12:45:34 -07:00
Родитель 3cfbef9abe
Коммит 5e75e497c9
1 изменённых файлов: 11 добавлений и 1 удалений

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

@ -1203,7 +1203,14 @@ public:
: mCallBeginRequest(DONT_CALL_BEGINREQUEST),
mCcx(&ccx),
mCcxToDestroy(nsnull)
#ifdef DEBUG
, mCx(nsnull)
, mCallerLanguage(JS_CALLER)
, mObj(nsnull)
, mCurrentJSObject(nsnull)
, mWrapper(nsnull)
, mTearOff(nsnull)
#endif
{
}
XPCLazyCallContext(XPCContext::LangType callerLanguage, JSContext* cx,
@ -1260,6 +1267,9 @@ public:
}
JSObject *GetCurrentJSObject() const
{
if(mCcx)
return mCcx->GetCurrentJSObject();
return mCurrentJSObject;
}
XPCCallContext &GetXPCCallContext()