зеркало из https://github.com/mozilla/pjs.git
Fix for lost status/error return value. Affects javascript: urls. r=gagan
This commit is contained in:
Родитель
d9918eb890
Коммит
e27abfc94d
|
@ -377,7 +377,9 @@ nsFileTransport::Process(void)
|
|||
|
||||
// if we're reading:
|
||||
if (mListener) {
|
||||
mStatus = mListener->OnStartRequest(this, mContext); // always send the start notification
|
||||
nsresult rv = mListener->OnStartRequest(this, mContext); // always send the start notification
|
||||
if (NS_SUCCEEDED(mStatus))
|
||||
mStatus = rv;
|
||||
}
|
||||
|
||||
mXferState = NS_FAILED(mStatus) ? END_READ : START_READ;
|
||||
|
|
Загрузка…
Ссылка в новой задаче