8 Feb
2026
8 Feb
'26
6:38 p.m.
Nikolay Sivov (@nsivov) commented about dlls/msxml3/element.c:
- ns = xmlSearchNs(node->doc, node, prefix); + if (xmlStrEqual(prefix, BAD_CAST "xmlns") ) + { + IUnknown *unk; + + xmlFree(prefix); + + ns = xmlSearchNs(node->doc, node, local); + xmlFree(local); + if (!ns) + { + if (item) *item = NULL; + return item ? S_FALSE : E_INVALIDARG; + } + + unk = create_attribute(node, FALSE); Won't this create an msxml attribute object pointing to a libxml element?
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/8914#note_129071