Hans Leidekker (@hans) commented about dlls/cryptxml/tests/cryptxml.c:
+ + status.cbSize = 0xdeadbeef; + status.dwErrorStatus = 0xdeadbeef; + status.dwInfoStatus = 0xdeadbeef; + + hr = CryptXmlGetStatus( handle, &status ); + ok_(__FILE__, line)( hr == S_OK, "got CryptXmlGetStatus hr %#lx\n", hr ); + ok_(__FILE__, line)( status.cbSize == expected_size, "got status.cbSize = %lu\n", status.cbSize ); + todo_wine_if( todo ) ok_(__FILE__, line)( status.dwErrorStatus == expected_error, "got status.dwErrorStatus = %ld\n", status.dwErrorStatus ); + ok_(__FILE__, line)( status.dwInfoStatus == expected_info, "got status.dwInfoStatus = %ld\n", status.dwInfoStatus ); +} + +struct xmldoc +{ + ULONG magic; + CRYPT_XML_DOC_CTXT ctx; This structure doesn't belong in the tests, please remove it and associated tests.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/8664#note_111605