Commit 83a51821 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

webservices: Fix WsWriteText test crash on Windows 10.

The tests crashes on my system when utf8.value.dictionary != NULL. Signed-off-by: 's avatarPiotr Caban <piotr@codeweavers.com> Signed-off-by: 's avatarHans Leidekker <hans@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 4c58a231
......@@ -2215,6 +2215,7 @@ static void test_WsMoveReader(void)
hr = WsWriteStartElement( writer, NULL, &localname2, &ns, NULL );
ok( hr == S_OK, "got %08x\n", hr );
memset(&utf8, 0, sizeof(utf8));
utf8.text.textType = WS_XML_TEXT_TYPE_UTF8;
utf8.value.bytes = (BYTE *)"test";
utf8.value.length = sizeof("test") - 1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment