30 May
2023
30 May
'23
4:05 p.m.
Nikolay Sivov (@nsivov) commented about dlls/xmllite/writer.c:
+ break; default: ; }
- return E_NOTIMPL; + ns = writer_find_ns(writer, NULL, pwszNamespaceUri); + + if (!ns) + return WR_E_NAMESPACEUNDECLARED; + + if (ns->prefix) + { + write_output_buffer(writer->output, ns->prefix, ns->prefix_len); + write_output_buffer_char(writer->output, ':'); + } I don't see a test for this.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/2928#note_34141