[Bug 42306] New: One Note Free Retail installer crashes in xmllite

wine-bugs at winehq.org wine-bugs at winehq.org
Wed Jan 25 04:03:40 CST 2017


https://bugs.winehq.org/show_bug.cgi?id=42306

            Bug ID: 42306
           Summary: One Note Free Retail installer crashes in xmllite
           Product: Wine
           Version: 2.0-rc5
          Hardware: x86
                OS: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: xmllite
          Assignee: wine-bugs at winehq.org
          Reporter: xerox_xerox2000 at yahoo.co.uk
      Distribution: ---

Created attachment 57030
  --> https://bugs.winehq.org/attachment.cgi?id=57030
crashlog

A user reported troubles with this in AppdB.

Attached  is +xmllite debugcrash

I was able to get a bit further using hack below *, then it ran into
unimplmeneted function 

Call from 0x7b43f417 to unimplemented function
api-ms-win-crt-locale-l1-1-0.dll.__initialize_lconv

there is already bugreport for that one


*hack:

diff --git a/dlls/xmllite/reader.c b/dlls/xmllite/reader.c
index de61d13..6d961cc 100644
--- a/dlls/xmllite/reader.c
+++ b/dlls/xmllite/reader.c
@@ -2777,7 +2777,8 @@ static HRESULT WINAPI xmlreader_Read(IXmlReader* iface,
XmlNodeType *nodetype)
     if (hr == S_OK)
     {
         TRACE("node type %s\n", debugstr_nodetype(This->nodetype));
-        *nodetype = This->nodetype;
+        if (nodetype)
+            *nodetype = This->nodetype;
     }

     return hr;

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