http://bugs.winehq.org/show_bug.cgi?id=24344
Louis Lenders xerox_xerox2000@yahoo.co.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW CC| |xerox_xerox2000@yahoo.co.uk Component|-unknown |winhttp Ever Confirmed|0 |1
--- Comment #2 from Louis Lenders xerox_xerox2000@yahoo.co.uk 2010-09-10 18:09:27 CDT ---
does this stub help?
Answering my own question: i gave it a try myself, and looks more like a bug in winhttp. With the hack below the download at least goes fine. Then chokes in installing .Net4. I'll change component to winhttp
diff --git a/dlls/winhttp/request.c b/dlls/winhttp/request.c index f6fc577..99fdce6 100644 --- a/dlls/winhttp/request.c +++ b/dlls/winhttp/request.c @@ -286,7 +286,7 @@ static int get_header_index( request_t *request, LPCWSTR fie if (!requested_index) break; requested_index--; } - if (index >= request->num_headers) index = -1; + if (index >= request->num_headers) index = 0;//-1; TRACE("returning %d\n", index); return index; }