http://bugs.winehq.org/show_bug.cgi?id=14412
--- Comment #12 from Nikolay Sivov bunglehead@gmail.com 2010-02-04 14:48:15 --- With wine-1.1.37-470-g8c16c40 it doesn't crash for me. It just displays a message with E_NOTIMPL error code. Obvious workaround for that is to for S_OK from domdoc_put_onReadyStateChange: --- --- a/dlls/msxml3/domdoc.c +++ b/dlls/msxml3/domdoc.c @@ -1812,7 +1812,7 @@ static HRESULT WINAPI domdoc_put_onReadyStateChange( VARIANT readyStateChangeSink ) { FIXME("\n"); - return E_NOTIMPL; + return S_OK; }
---
This let's it to proceed further, but next problem (or caused by this hack) is a error box with: --- '' not a valid integer value ---
It may indicate a parsing problem or something else. Anyway event sink should be implemented first.