[Bug 24344] New: VC++ Express 2010 crashes with unimplemented function wer.dll.WerReportCreate
http://bugs.winehq.org/show_bug.cgi?id=24344 Summary: VC++ Express 2010 crashes with unimplemented function wer.dll.WerReportCreate Product: Wine Version: 1.3.2 Platform: x86 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: -unknown AssignedTo: wine-bugs(a)winehq.org ReportedBy: adys.wh(a)gmail.com Last few lines: err:ole:CoGetClassObject class {c01b9ba0-bea7-41ba-b604-d0a36f469133} not registered err:ole:CoGetClassObject no class object {c01b9ba0-bea7-41ba-b604-d0a36f469133} could be created for context 0x1 fixme:mountmgr:harddisk_ioctl unsupported ioctl 70c00 fixme:mountmgr:harddisk_ioctl unsupported ioctl 70c00 fixme:wuapi:automatic_updates_Pause fixme:wuapi:automatic_updates_Pause fixme:wuapi:automatic_updates_Resume wine: Call from 0x7edc5b43 to unimplemented function wer.dll.WerReportCreate, aborting wine: Call from 0x7edc5b43 to unimplemented function wer.dll.WerReportCreate, aborting err:seh:raise_exception Unhandled exception code 80000100 flags 1 addr 0x7edc5b43 Note that since it's in wer.dll, it's probably breaking earlier on anyway ... (No wer component in bugzilla?) -- 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.
http://bugs.winehq.org/show_bug.cgi?id=24344 Jerome Leclanche <adys.wh(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- URL| |http://www.microsoft.com/ex | |press/Downloads/#2010-Visua | |l-CPP -- 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.
http://bugs.winehq.org/show_bug.cgi?id=24344 Jerome Leclanche <adys.wh(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |Installer -- 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.
http://bugs.winehq.org/show_bug.cgi?id=24344 Jerome Leclanche <adys.wh(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|VC++ Express 2010 crashes |VC++ Express 2010 installer |with unimplemented function |crashes with unimplemented |wer.dll.WerReportCreate |function | |wer.dll.WerReportCreate -- 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.
http://bugs.winehq.org/show_bug.cgi?id=24344 --- Comment #1 from Louis Lenders <xerox_xerox2000(a)yahoo.co.uk> 2010-09-10 17:56:03 CDT --- Created an attachment (id=30689) --> (http://bugs.winehq.org/attachment.cgi?id=30689) stub for WerCreateReport does this stub help? -- 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.
http://bugs.winehq.org/show_bug.cgi?id=24344 Louis Lenders <xerox_xerox2000(a)yahoo.co.uk> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW CC| |xerox_xerox2000(a)yahoo.co.uk Component|-unknown |winhttp Ever Confirmed|0 |1 --- Comment #2 from Louis Lenders <xerox_xerox2000(a)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.
http://bugs.winehq.org/show_bug.cgi?id=24344 Jerome Leclanche <adys.wh(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |download -- 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.
http://bugs.winehq.org/show_bug.cgi?id=24344 Hans Leidekker <hans(a)meelstraat.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |hans(a)meelstraat.net --- Comment #3 from Hans Leidekker <hans(a)meelstraat.net> 2010-09-11 03:22:01 CDT --- Please attach a +winhttp trace. -- 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.
http://bugs.winehq.org/show_bug.cgi?id=24344 --- Comment #4 from Jerome Leclanche <adys.wh(a)gmail.com> 2010-09-11 03:32:57 CDT --- Created an attachment (id=30696) --> (http://bugs.winehq.org/attachment.cgi?id=30696) console log (In reply to comment #3)
Please attach a +winhttp trace.
+winhttp doesn't show a single winhttp trace... I don't think Louis and I are talking about the same bug. -- 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.
http://bugs.winehq.org/show_bug.cgi?id=24344 --- Comment #5 from Louis Lenders <xerox_xerox2000(a)yahoo.co.uk> 2010-09-11 04:17:14 CDT --- Created an attachment (id=30698) --> (http://bugs.winehq.org/attachment.cgi?id=30698) +winhttp log I used the exe from the downloadlink you provided: sha1sum vc_web.exe c2d61a5424aa474a169e59199aa2158a858833f6 vc_web.exe It fails for me with the attached (+winhttp) log. (windows version set to default WinXP) -- 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.
http://bugs.winehq.org/show_bug.cgi?id=24344 --- Comment #6 from Jerome Leclanche <adys.wh(a)gmail.com> 2010-09-11 04:34:01 CDT --- (In reply to comment #5)
Created an attachment (id=30698) --> (http://bugs.winehq.org/attachment.cgi?id=30698) [details] +winhttp log
I used the exe from the downloadlink you provided:
sha1sum vc_web.exe c2d61a5424aa474a169e59199aa2158a858833f6 vc_web.exe
It fails for me with the attached (+winhttp) log. (windows version set to default WinXP)
Sorry, I should have precised I had to extract the files manually from windows because of a temporary file issue, filed as bug i-cant-find-it. -- 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.
http://bugs.winehq.org/show_bug.cgi?id=24344 Jerome Leclanche <adys.wh(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |patch -- 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.
http://bugs.winehq.org/show_bug.cgi?id=24344 --- Comment #7 from Jerome Leclanche <adys.wh(a)gmail.com> 2010-09-13 08:17:22 CDT --- (In reply to comment #1)
Created an attachment (id=30689) --> (http://bugs.winehq.org/attachment.cgi?id=30689) [details] stub for WerCreateReport
does this stub help?
Louis, are you planning to send the stub? PS, it seems i didnt properly file the issue about the temporary file issue... I'll file it again in a bit. -- 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.
http://bugs.winehq.org/show_bug.cgi?id=24344 --- Comment #8 from Louis Lenders <xerox_xerox2000(a)yahoo.co.uk> 2010-09-13 10:15:29 CDT --- (In reply to comment #7)
(In reply to comment #1)
Created an attachment (id=30689) --> (http://bugs.winehq.org/attachment.cgi?id=30689) [details] [details] stub for WerCreateReport
does this stub help?
Louis, are you planning to send the stub?
If it fixes your bug, yes. -- 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.
http://bugs.winehq.org/show_bug.cgi?id=24344 --- Comment #9 from Jerome Leclanche <adys.wh(a)gmail.com> 2010-09-13 10:21:12 CDT --- (In reply to comment #8)
(In reply to comment #7)
(In reply to comment #1)
Created an attachment (id=30689) --> (http://bugs.winehq.org/attachment.cgi?id=30689) [details] [details] [details] stub for WerCreateReport
does this stub help?
Louis, are you planning to send the stub?
If it fixes your bug, yes.
It gets the installer further for me, but it dies later on ... ill retest later and file (yet-another) bug. -- 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.
http://bugs.winehq.org/show_bug.cgi?id=24344 Detlef Riekenberg <wine.dev(a)web.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED CC| |wine-bugs(a)winehq.org AssignedTo|wine-bugs(a)winehq.org |wine.dev(a)web.de --- Comment #10 from Detlef Riekenberg <wine.dev(a)web.de> 2010-10-29 11:22:27 CDT --- I'm working on a wer.dll implementation The winhttp problems are a different bug -- By by ... Detlef -- 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.
http://bugs.winehq.org/show_bug.cgi?id=24344 Detlef Riekenberg <wine.dev(a)web.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED AssignedTo|wine.dev(a)web.de |wine-bugs(a)winehq.org --- Comment #11 from Detlef Riekenberg <wine.dev(a)web.de> 2010-11-01 12:06:43 CDT --- We have now a stub for WerReportCreate in the current git tree. -- By by ... Detlef -- 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.
http://bugs.winehq.org/show_bug.cgi?id=24344 Alexandre Julliard <julliard(a)winehq.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED --- Comment #12 from Alexandre Julliard <julliard(a)winehq.org> 2010-11-12 13:33:31 CST --- Closing bugs fixed in 1.3.7. -- 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.
http://bugs.winehq.org/show_bug.cgi?id=24344 Jerome Leclanche <adys.wh(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Fixed by SHA1| |de5e0cbbf8cd42695eddca4f4ba | |22743c27c27b9 -- 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.
participants (1)
-
wine-bugs@winehq.org