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

hlink/tests: Fix interface leak (Valgrind).

parent 79f1d863
......@@ -124,6 +124,8 @@ static void test_BrowseWindowInfo(void)
hres = IHlinkBrowseContext_GetBrowseWindowInfo(bc, &bwinfo_get);
ok(hres == S_OK, "GetBrowseWindowInfo failed: 0x%08x\n", hres);
ok(!memcmp(&bwinfo_set, &bwinfo_get, sizeof(HLBWINFO)), "Set and Get differ\n");
IHlinkBrowseContext_Release(bc);
}
START_TEST(browse_ctx)
......
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