[PATCH v2] msxml3: Null check new child in insertBefore.

Nikolay Sivov nsivov at codeweavers.com
Thu May 27 01:10:02 CDT 2021


Please split this in two patches, one for document and one for element node.

> +    /* NULL to document */
> +    V_VT(&v) = VT_NULL;
> +    node = (void*)0xdeadbeef;
> +    hr = IXMLDOMDocument_insertBefore(doc, (IXMLDOMNode*)NULL, v, &node);
> +    ok(hr == E_INVALIDARG, "got 0x%08x\n", hr);
> +    ok(node == (void*)0xdeadbeef, "got %p\n", node);
> +
You don't need to cast NULL.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.winehq.org/pipermail/wine-devel/attachments/20210527/6158ea95/attachment.htm>


More information about the wine-devel mailing list