Commit f0d77652 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

scrrun/tests: Actually test the return values (PVS-Studio).

parent 33136293
......@@ -1578,6 +1578,7 @@ todo_wine
ok(hr == S_OK, "got 0x%08x\n", hr);
str = SysAllocString(aW);
hr = ITextStream_Write(stream, str);
ok(hr == S_OK, "got 0x%08x\n", hr);
SysFreeString(str);
ITextStream_Release(stream);
......@@ -1730,6 +1731,7 @@ todo_wine
ok(hr == S_OK, "got 0x%08x\n", hr);
str = SysAllocString(aW);
hr = ITextStream_Write(stream, str);
ok(hr == S_OK, "got 0x%08x\n", hr);
SysFreeString(str);
ITextStream_Release(stream);
......
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