http://bugs.winehq.org/show_bug.cgi?id=21234
Summary: Monopoly Deluxe installer crash at the end of the installation Product: Wine Version: 1.1.35 Platform: x86 URL: http://cdn.media.zylom.com/games/2130/7/34/2964/monopo lydownload.exe OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: -unknown AssignedTo: wine-bugs@winehq.org ReportedBy: jaimerave@gmail.com
Created an attachment (id=25511) --> (http://bugs.winehq.org/attachment.cgi?id=25511) backtrace
After finishing the installation the installer crash. I'm attaching the backtrace.
http://bugs.winehq.org/show_bug.cgi?id=21234
Jaime Rave jaimerave@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Keywords| |download, Installer
http://bugs.winehq.org/show_bug.cgi?id=21234
Frédéric Delanoy frederic.delanoy@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |frederic.delanoy@gmail.com
--- Comment #1 from Frédéric Delanoy frederic.delanoy@gmail.com 2011-05-09 11:28:31 CDT --- No crash, but installer only shows a blank flickering window for a second or so, then exits. Log attached.
Wine 1.3.19
http://bugs.winehq.org/show_bug.cgi?id=21234
--- Comment #2 from Frédéric Delanoy frederic.delanoy@gmail.com 2011-05-09 11:29:39 CDT --- Created an attachment (id=34569) --> (http://bugs.winehq.org/attachment.cgi?id=34569) Console log for 1.3.19
http://bugs.winehq.org/show_bug.cgi?id=21234
Frédéric Delanoy frederic.delanoy@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed|0 |1
--- Comment #3 from Frédéric Delanoy frederic.delanoy@gmail.com 2011-05-20 15:51:12 CDT --- Same issue as comment 2 in 1.3.20 Rapid crash in wine-1.3.20-230-g456e48e at start of installation Ubuntu 11.04 x86_64
http://bugs.winehq.org/show_bug.cgi?id=21234
Frédéric Delanoy frederic.delanoy@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Attachment #34569|0 |1 is obsolete| |
--- Comment #4 from Frédéric Delanoy frederic.delanoy@gmail.com 2011-05-20 15:53:08 CDT --- Created an attachment (id=34809) --> (http://bugs.winehq.org/attachment.cgi?id=34809) Console log for wine-1.3.20-230-g456e48e
http://bugs.winehq.org/show_bug.cgi?id=21234
joaopa jeremielapuree@yahoo.fr changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |jeremielapuree@yahoo.fr
--- Comment #5 from joaopa jeremielapuree@yahoo.fr 2011-05-20 15:58:42 CDT --- What about with a native shdocvw dll (obviously, only if you have a valid windows license ) ?
http://bugs.winehq.org/show_bug.cgi?id=21234
--- Comment #6 from Frédéric Delanoy frederic.delanoy@gmail.com 2011-05-20 16:33:31 CDT --- (In reply to comment #5)
What about with a native shdocvw dll (obviously, only if you have a valid windows license ) ?
Same issue. Do you experience the same crash?
http://bugs.winehq.org/show_bug.cgi?id=21234
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |focht@gmx.net Component|-unknown |mshtml
--- Comment #7 from Anastasius Focht focht@gmx.net 2011-05-20 17:29:27 CDT --- Hello,
the problem seems to be that the installer is trying to fetch active document data and derefs NULL IHTMLElementCollection. HTMLDocument_get_all() returns S_OK and out param (collection) is set to NULL, leading to crash.
WINEDEBUG=+tid,+seh,+loaddll,+mshtml,+shdocvw,+variant,+ole wine ./monopolydownload.exe
--- snip --- ... 0009:trace:shdocvw:WebBrowser_get_Document (0x137f88)->(0x3278b4) 0009:trace:mshtml:htmldoc_qi (0x13b050)->(IID_IDispatch, 0x327890) 0009:trace:mshtml:CustomDoc_AddRef (0x13b050) ref = 5 0009:trace:mshtml:htmldoc_qi (0x13b050)->(IID_IHTMLDocument2, 0x327880) 0009:trace:mshtml:CustomDoc_AddRef (0x13b050) ref = 6 0009:trace:mshtml:CustomDoc_Release (0x13b050) ref = 5 0009:trace:mshtml:htmldoc_qi (0x13b050)->(IID_IHTMLDocument2, 0x3278b0) 0009:trace:mshtml:CustomDoc_AddRef (0x13b050) ref = 6 0009:trace:mshtml:CustomDoc_Release (0x13b050) ref = 5 0009:trace:mshtml:HTMLDocument_get_all (0x13b050)->(0x3278f4) 0009:trace:variant:VariantInit (0x3278cc) 0009:trace:seh:raise_exception code=c0000005 flags=0 addr=0x419305 ip=00419305 tid=0009 0009:trace:seh:raise_exception info[0]=00000000 0009:trace:seh:raise_exception info[1]=00000000 0009:trace:seh:raise_exception eax=00000000 ebx=00557d70 ecx=00000000 edx=003278f8 esi=003278d4 edi=003278b4 0009:trace:seh:raise_exception ebp=003278fc esp=003278ac cs=0073 ds=007b es=007b fs=0033 gs=003b flags=00210206 0009:trace:seh:call_vectored_handlers calling handler at 0x687b37aa code=c0000005 flags=0 ... --- snip ---
Debugging the last mshtml call before the crash:
--- snip --- 0x004192ab: pushl %ecx Wine-dbg> 0x004192ac: pushl %esi Wine-dbg> 0x004192ad: call *0x20(%eax) Wine-dbg>si HTMLDocument_get_all () at /opt/projects/wine/wine-git/dlls/mshtml/htmldoc.c:115 0x20090adb HTMLDocument_get_all [/opt/projects/wine/wine-git/dlls/mshtml/htmldoc.c:115] in mshtml: pushl %ebp 115 { Wine-dbg>n 116 HTMLDocument *This = impl_from_IHTMLDocument2(iface); Wine-dbg>n 117 nsIDOMElement *nselem = NULL; Wine-dbg>n 122 TRACE("(%p)->(%p)\n", This, p); Wine-dbg>n 124 if(!This->doc_node->nsdoc) { Wine-dbg>n 129 nsres = nsIDOMHTMLDocument_GetDocumentElement(This->doc_node->nsdoc, &nselem); Wine-dbg>n fixme:winedbg:be_i386_is_jump unknown 81 130 if(NS_FAILED(nsres)) { Wine-dbg>n 135 if(!nselem) { Wine-dbg>n 136 *p = NULL; Wine-dbg>n 137 return S_OK; --- snip ---
$ sha1sum monopolydownload.exe a4a37d6abb36de685aa78472b62988104dc77148 monopolydownload.exe
$ wine --version wine-1.3.20-230-g456e48e
Regards
http://bugs.winehq.org/show_bug.cgi?id=21234
Rafal Stanilewicz washuu@eastnews.com.pl changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |washuu@eastnews.com.pl
--- Comment #8 from Rafal Stanilewicz washuu@eastnews.com.pl 2012-03-28 08:22:46 CDT --- I wonder if this bug is duplicate of bug 21235 http://bugs.winehq.org/show_bug.cgi?id=21235 or vice-versa...
http://bugs.winehq.org/show_bug.cgi?id=21234
Frédéric Delanoy frederic.delanoy@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Blocks| |21235
http://bugs.winehq.org/show_bug.cgi?id=21234
Frédéric Delanoy frederic.delanoy@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Attachment #25511|0 |1 is obsolete| | Attachment #34809|0 |1 is obsolete| |
--- Comment #9 from Frédéric Delanoy frederic.delanoy@gmail.com 2012-03-29 16:50:46 CDT --- Created attachment 39608 --> http://bugs.winehq.org/attachment.cgi?id=39608 Console log + crash wine-1.5.0-241-g997be9c
http://bugs.winehq.org/show_bug.cgi?id=21234
Frédéric Delanoy frederic.delanoy@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- URL|http://cdn.media.zylom.com/ |http://cdn.media.zylom.com/ |games/2130/7/34/2964/monopo |games/2130/7/34/2964/monopo |lydownload.exe |lydownload.exe
--- Comment #10 from Frédéric Delanoy frederic.delanoy@gmail.com 2013-05-26 19:17:06 CDT --- Still crashes with 1.5.31
http://bugs.winehq.org/show_bug.cgi?id=21234
--- Comment #11 from Frédéric Delanoy frederic.delanoy@gmail.com 2013-11-08 04:50:49 CST --- Still crashes with wine-1.7.5-243-g321c965
https://bugs.winehq.org/show_bug.cgi?id=21234
Jarkko K jarkko_korpi@hotmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |jarkko_korpi@hotmail.com
--- Comment #12 from Jarkko K jarkko_korpi@hotmail.com --- This is crazy. There are 2 bugs of same program. I couldnt install it correctly, but there is seems to be launcher, trying that gives crash.
Both reports seem to be correct.
doesnt work wine 1.7.18
https://bugs.winehq.org/show_bug.cgi?id=21234
Frédéric Delanoy frederic.delanoy@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.winehq.org/sho | |w_bug.cgi?id=21235
http://bugs.winehq.org/show_bug.cgi?id=21234
hanska2@luukku.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |hanska2@luukku.com
--- Comment #13 from hanska2@luukku.com --- Crash with 1.7.22.
https://bugs.winehq.org/show_bug.cgi?id=21234
Teras teras@luukku.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |teras@luukku.com
--- Comment #14 from Teras teras@luukku.com --- Still crashing 1.7.37
https://bugs.winehq.org/show_bug.cgi?id=21234
super_man@post.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |super_man@post.com
--- Comment #15 from super_man@post.com --- (In reply to Teras from comment #14)
Still crashing 1.7.37
Still crashing 1.9.6
https://bugs.winehq.org/show_bug.cgi?id=21234
--- Comment #16 from Frédéric Delanoy frederic.delanoy@gmail.com --- Still crashing (wine-1.9.18-121-g4e9cc30)
https://bugs.winehq.org/show_bug.cgi?id=21234
--- Comment #17 from joaopa jeremielapuree@yahoo.fr --- Still not working with wine-4.10.
https://bugs.winehq.org/show_bug.cgi?id=21234
lizhenbo litimetal@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |litimetal@gmail.com
--- Comment #18 from lizhenbo litimetal@gmail.com --- Created attachment 69427 --> https://bugs.winehq.org/attachment.cgi?id=69427 backtrace_wine6.1
It's still crashing in wine 6.1
https://bugs.winehq.org/show_bug.cgi?id=21234
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- URL|http://cdn.media.zylom.com/ |https://web.archive.org/web |games/2130/7/34/2964/monopo |/20120501215102/http://cdn. |lydownload.exe |media.zylom.com/games/2130/ | |7/34/2964/monopolydownload. | |exe Summary|Monopoly Deluxe installer |Monopoly Deluxe (Zylom |crash at the end of the |Games) v1.0 installer crash |installation |at the end of the | |installation Resolution|--- |FIXED Status|NEW |RESOLVED
--- Comment #19 from Anastasius Focht focht@gmx.net --- Hello folks,
the installer / launcher suffered from many different mshtml/Wine-Gecko bugs. Depending on the Wine release used for testing you simply encountered different issues. For end users/triagers it just appears as the same bug "app installer crashes at the end of installation" but in fact it's not. You recycled the bug over and over again for different issues (dupes).
Over course of 10 years my guess would be it hit a dozen if not more mshtml/Wine-Gecko bugs.
For example the crash from my comment #11 disappeared between Wine 1.5.6 and 1.5.7 - only to advance to the next problem. Worse, during my brief testing of various old Wine versions it went even backwards due to regressions.
--- snip --- ... trace:mshtml:CustomDoc_Release (0x13e078) ref = 5 trace:mshtml:HTMLDocument_get_all (0x13e078)->(0x338704) trace:seh:raise_exception code=c0000005 flags=0 addr=0x419305 ip=00419305 tid=0009 trace:seh:raise_exception info[0]=00000000 trace:seh:raise_exception info[1]=00000000 trace:seh:raise_exception eax=00000000 ebx=00556940 ecx=0000007a edx=00338708 esi=003386e4 edi=003386c4 trace:seh:raise_exception ebp=0033870c esp=003386bc cs=0023 ds=002b es=002b fs=0063 gs=006b flags=00210202 trace:seh:call_stack_handlers calling handler at 0x43ec0d code=c0000005 flags=0 trace:seh:call_stack_handlers handler at 0x43ec0d returned 1 trace:seh:call_stack_handlers calling handler at 0x43e15e code=c0000005 flags=0 trace:seh:call_stack_handlers handler at 0x43e15e returned 1 trace:seh:call_stack_handlers calling handler at 0x42c904 code=c0000005 flags=0 wine: Unhandled page fault on read access to 0x00000000 at address 0x419305 (thread 0009), starting debugger... --- snip ---
The result is that one point bug 21235 became a duplicate of this one (or the other way around). After that, it advanced further into the next bug. Neither bug 21234 (this) nor bug 21235 reflect the original individual issues anymore.
The installation part of the bug is long gone. Resolving as 'fixed' here because the current crash after Google toolbar install option and clicking second 'Accept' is already the part of the first-time start.
You can continue in bug 21234 and recycle it for the start issue.
$ sha1sum monopolydownload.exe a4a37d6abb36de685aa78472b62988104dc77148 monopolydownload.exe
$ du -sh monopolydownload.exe 37M monopolydownload.exe
$ wine --version wine-6.2-157-gb8719736c5a
Regards
https://bugs.winehq.org/show_bug.cgi?id=21234
--- Comment #20 from Anastasius Focht focht@gmx.net --- Hello again,
--- quote --- You can continue in bug 21234 and recycle it for the start issue. --- quote ---
I meant bug 21235
Regards
https://bugs.winehq.org/show_bug.cgi?id=21234
Alexandre Julliard julliard@winehq.org changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED
--- Comment #21 from Alexandre Julliard julliard@winehq.org --- Closing bugs fixed in 6.3.