http://bugs.winehq.org/show_bug.cgi?id=14775
--- Comment #2 from Louis Lenders xerox_xerox2000@yahoo.co.uk 2008-08-05 17:59:48 --- simple hack to get the app running:
diff --git a/dlls/shlwapi/url.c b/dlls/shlwapi/url.c index 03941a9..1cbae31 100644 --- a/dlls/shlwapi/url.c +++ b/dlls/shlwapi/url.c @@ -331,7 +331,7 @@ HRESULT WINAPI UrlCanonicalizeW(LPCWSTR pszUrl, LPWSTR pszCa *pszCanonicalized = 0; return S_OK; } - + if (lstrlenW(pszUrl) > INTERNET_MAX_URL_LENGTH) return E_FAIL; nByteLen = (lstrlenW(pszUrl) + 1) * sizeof(WCHAR); /* length in bytes */ lpszUrlCpy = HeapAlloc(GetProcessHeap(), 0, INTERNET_MAX_URL_LENGTH * sizeof(WCHAR));
haven't got a clue if it's correct ;)