8 Aug
2023
8 Aug
'23
12:32 a.m.
Nikolay Sivov (@nsivov) commented about dlls/msxml3/domdoc.c:
VariantClear(&varStr); return hr; } + else if (lstrcmpiW(p, PropertyValidateOnParse) == 0) + { + VARIANT_BOOL var; + + var = V_BOOL(&value); + return IXMLDOMDocument3_put_validateOnParse(iface, var); + }
It's better to return value directly here, without calling its own method. Also, shouldn't it be a part of properties structure? -- https://gitlab.winehq.org/wine/wine/-/merge_requests/3424#note_41556