mshtml/tests: Fix interface release (Coverity).

This commit is contained in:
Nikolay Sivov 2009-01-24 17:25:11 +03:00 committed by Alexandre Julliard
parent 2fbe8d23eb
commit f4f5ee152d
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}