Commit f4f5ee15 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

mshtml/tests: Fix interface release (Coverity).

parent 2fbe8d23
......@@ -4153,9 +4153,9 @@ static void test_HTMLDoc_ISupportErrorInfo(void)
{
hres = ISupportErrorInfo_InterfaceSupportsErrorInfo(sinfo, &IID_IErrorInfo);
ok(hres == S_FALSE, "Expected S_OK, got %x\n", hres);
IUnknown_Release(sinfo);
}
IUnknown_Release(sinfo);
ref = IUnknown_Release(unk);
ok(ref == 0, "ref=%d, expected 0\n", ref);
}
......
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