http://bugs.winehq.org/show_bug.cgi?id=14381
--- Comment #16 from Louis Lenders xerox_xerox2000@yahoo.co.uk 2008-08-14 07:06:32 --- huh, forget that last statement, it looks more like a problem in UrlUnEscapeA. The hack/patch below makes the download start fine. This too needs testing
diff --git a/dlls/shlwapi/url.c b/dlls/shlwapi/url.c index 03941a9..18df733 100644 --- a/dlls/shlwapi/url.c +++ b/dlls/shlwapi/url.c @@ -1155,7 +1155,7 @@ HRESULT WINAPI UrlUnescapeA( TRACE("(%s, %p, %p, 0x%08x)\n", debugstr_a(pszUrl), pszUnescaped, pcchUnescaped, dwFlags);
- if(!pszUrl || (!pszUnescaped && !(dwFlags & URL_UNESCAPE_INPLACE)) || !pcch + if(!pszUrl || (!pszUnescaped && !(dwFlags & URL_UNESCAPE_INPLACE)) ) return E_INVALIDARG;
if(dwFlags & URL_UNESCAPE_INPLACE)