[Bug 24344] VC++ Express 2010 installer crashes with unimplemented function wer.dll.WerReportCreate

wine-bugs at winehq.org wine-bugs at winehq.org
Fri Sep 10 18:09:27 CDT 2010


http://bugs.winehq.org/show_bug.cgi?id=24344

Louis Lenders <xerox_xerox2000 at yahoo.co.uk> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
                 CC|                            |xerox_xerox2000 at yahoo.co.uk
          Component|-unknown                    |winhttp
     Ever Confirmed|0                           |1

--- Comment #2 from Louis Lenders <xerox_xerox2000 at 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;
 }

-- 
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.



More information about the wine-bugs mailing list