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@winehq.org Reporter: xerox_xerox2000@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;