Commit c0f5d024 authored by Sebastian Lackner's avatar Sebastian Lackner Committed by Alexandre Julliard

windowscodecs/tests: Fix test condition which is always true.

parent bf117ec5
......@@ -223,7 +223,7 @@ static void test_pixelformat_info(void)
memset(value, 0xaa, 256 * sizeof(WCHAR));
hr = IWICComponentInfo_GetAuthor(info, len-1, value, NULL);
ok(hr == E_INVALIDARG, "GetAuthor failed, hr=%x\n", hr);
ok(value[0] = 0xaaaa, "string modified\n");
ok(value[0] == 0xaaaa, "string modified\n");
len = 0xdeadbeef;
memset(value, 0xaa, 256 * sizeof(WCHAR));
......
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