[Bug 14412] staruml can't load examples

wine-bugs at winehq.org wine-bugs at winehq.org
Thu Feb 4 14:48:16 CST 2010


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





--- Comment #12 from Nikolay Sivov <bunglehead at 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.

-- 
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