1 Nov
2022
1 Nov
'22
3:02 p.m.
Nikolay Sivov (@nsivov) commented about dlls/xmllite/writer.c:
}
This->textnode = 1; - write_escaped_string(This, string); + write_escaped_string(This, string, lstrlenW(string)); return S_OK; }
+static HRESULT WINAPI xmlwriter_WriteChars(IXmlWriter *iface, const WCHAR *pwch, UINT cwch) +{ + xmlwriter *This = impl_from_IXmlWriter(iface); + int not_written = 0; + + TRACE("%p %s %d\n", This, wine_dbgstr_w(pwch), cwch);
For new methods let's use "xmlwriter *writer", and commas in a trace message. For string tracing this should be using debugstr_wn(). -- https://gitlab.winehq.org/wine/wine/-/merge_requests/1199#note_12657