mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 05:11:16 +00:00
Bug 1421354 - Allow stub installer download resuming in more error cases. r=agashlin
MozReview-Commit-ID: 6UnbJAwmUC1 --HG-- extra : rebase_source : e84cbd6111f34683960a0965af84907535136581
This commit is contained in:
parent
52d69a63ca
commit
8d0cabec1f
@ -491,6 +491,11 @@ die:
|
|||||||
{
|
{
|
||||||
ec = GetLastError();
|
ec = GetLastError();
|
||||||
TRACE(_T("InetBgDl: InternetReadFile failed, gle=%u\n"), ec);
|
TRACE(_T("InetBgDl: InternetReadFile failed, gle=%u\n"), ec);
|
||||||
|
if (ERROR_INTERNET_CONNECTION_ABORTED == ec ||
|
||||||
|
ERROR_INTERNET_CONNECTION_RESET == ec)
|
||||||
|
{
|
||||||
|
ec = ERROR_BROKEN_PIPE;
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user