Bug 190180, fix UMR, r=harishd, sr=jst.

This commit is contained in:
heikki%netscape.com 2006-04-20 03:38:21 +00:00
Родитель 1756d90c11
Коммит ab3c4c50e6
1 изменённых файлов: 6 добавлений и 4 удалений

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

@ -127,12 +127,14 @@ GetCurrentContext(nsIScriptContext **aScriptContext)
/////////////////////////////////////////////
nsXMLHttpRequest::nsXMLHttpRequest()
: mAsync(PR_FALSE),
mCrossSiteAccessEnabled(PR_FALSE),
mLoopingForSyncLoad(PR_FALSE)
{
ChangeState(XML_HTTP_REQUEST_UNINITIALIZED,PR_FALSE);
mAsync = PR_TRUE;
mCrossSiteAccessEnabled = PR_FALSE;
mLoopingForSyncLoad = PR_FALSE;
mEventQService = do_GetService(kEventQueueServiceCID);
// Keep this last so that everything is initialized by the time we call this
ChangeState(XML_HTTP_REQUEST_UNINITIALIZED, PR_FALSE);
}
nsXMLHttpRequest::~nsXMLHttpRequest()