mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
bug 1111875 - remove assertion on http size input error r=keeler
--HG-- extra : rebase_source : 952fa806d6598c00412bd9b27cf3af65e78e9452
This commit is contained in:
parent
f21105850c
commit
f7c9a9f8ee
@ -5761,7 +5761,10 @@ nsHttpChannel::OnTransportStatus(nsITransport *trans, nsresult status,
|
||||
}
|
||||
|
||||
if (progress > 0) {
|
||||
MOZ_ASSERT(progress <= progressMax, "unexpected progress values");
|
||||
if (progress > progressMax) {
|
||||
NS_WARNING("unexpected progress values");
|
||||
}
|
||||
|
||||
// Try to get mProgressSink if it was nulled out during OnStatus.
|
||||
if (!mProgressSink) {
|
||||
GetCallback(mProgressSink);
|
||||
|
Loading…
Reference in New Issue
Block a user