Bug 473161 - Fix imgRequest::Cancel() to call Cancel() on the loadgroup instead of the channel. The fix to bug 89419 included a mistaken change from cancelling the loadgroup to cancelling the channel. r=bzbarsky, sr=vladimir, a=blocking1.9.1+

This commit is contained in:
Joe Drew 2009-01-26 15:34:03 -05:00
Родитель 852b5dc273
Коммит 99c4ffa500
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -348,8 +348,8 @@ void imgRequest::Cancel(nsresult aStatus)
RemoveFromCache();
}
if (mChannel && mLoading)
mChannel->Cancel(aStatus);
if (mRequest && mLoading)
mRequest->Cancel(aStatus);
}
void imgRequest::CancelAndAbort(nsresult aStatus)