diff options
Diffstat (limited to 'src/libs')
-rw-r--r-- | src/libs/dutil/WixToolset.DUtil/dlutil.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/libs/dutil/WixToolset.DUtil/dlutil.cpp b/src/libs/dutil/WixToolset.DUtil/dlutil.cpp index 70155e6f..f6b793b2 100644 --- a/src/libs/dutil/WixToolset.DUtil/dlutil.cpp +++ b/src/libs/dutil/WixToolset.DUtil/dlutil.cpp | |||
@@ -158,7 +158,10 @@ extern "C" HRESULT DAPI DownloadUrl( | |||
158 | 158 | ||
159 | // Get the resource size and creation time from the internet. | 159 | // Get the resource size and creation time from the internet. |
160 | hr = GetResourceMetadata(hSession, &sczUrl, pDownloadSource->sczUser, pDownloadSource->sczPassword, pAuthenticate, &dw64Size, &ftCreated); | 160 | hr = GetResourceMetadata(hSession, &sczUrl, pDownloadSource->sczUser, pDownloadSource->sczPassword, pAuthenticate, &dw64Size, &ftCreated); |
161 | DlExitOnFailure(hr, "Failed to get size and time for URL: %ls", sczUrl); | 161 | if (FAILED(hr)) |
162 | { | ||
163 | LogStringLine(REPORT_VERBOSE, "Ignoring failure to get size and time for URL: %ls (error 0x%x)", sczUrl, hr); | ||
164 | } | ||
162 | 165 | ||
163 | // Ignore failure to initialize resume because we will fall back to full download then | 166 | // Ignore failure to initialize resume because we will fall back to full download then |
164 | // download. | 167 | // download. |