Bug 621446 - Fixed red caused by changeset 63c3d103610c from bad member rename, r=bustage

This commit is contained in:
Honza Bambas 2012-01-13 17:04:15 +01:00
Родитель b3187374c5
Коммит ca1eb78f1c
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -70,7 +70,7 @@ HttpChannelParent::HttpChannelParent(PBrowserParent* iframeEmbedding)
, mHeadersToSyncToChild(nsnull) , mHeadersToSyncToChild(nsnull)
, mSentRedirect1Begin(false) , mSentRedirect1Begin(false)
, mSentRedirect1BeginFailed(false) , mSentRedirect1BeginFailed(false)
, mReceviedRedirect2Verify(false) , mReceivedRedirect2Verify(false)
{ {
// Ensure gHttpHandler is initialized: we need the atom table up and running. // Ensure gHttpHandler is initialized: we need the atom table up and running.
nsIHttpProtocolHandler* handler; nsIHttpProtocolHandler* handler;
@ -357,7 +357,7 @@ HttpChannelParent::RecvRedirect2Verify(const nsresult& result,
if (!mRedirectCallback) { if (!mRedirectCallback) {
// Bug 621446 investigation (optimization turned off above) // Bug 621446 investigation (optimization turned off above)
if (mReceviedRedirect2Verify) if (mReceivedRedirect2Verify)
::PR_Abort(); ::PR_Abort();
if (mSentRedirect1BeginFailed) if (mSentRedirect1BeginFailed)
::PR_Abort(); ::PR_Abort();
@ -369,7 +369,7 @@ HttpChannelParent::RecvRedirect2Verify(const nsresult& result,
::PR_Abort(); ::PR_Abort();
} }
mReceviedRedirect2Verify = true; mReceivedRedirect2Verify = true;
mRedirectCallback->OnRedirectVerifyCallback(result); mRedirectCallback->OnRedirectVerifyCallback(result);
mRedirectCallback = nsnull; mRedirectCallback = nsnull;