Commit aab7fcd3 authored by Sven Baars's avatar Sven Baars Committed by Alexandre Julliard

hlink/tests: Fix some memory leaks (Valgrind).

parent b012281c
......@@ -165,16 +165,12 @@ static void test_GetObject(void)
{
IHlinkBrowseContext *bc;
IMoniker *dummy;
IBindCtx *bindctx;
IUnknown *unk;
WCHAR one[] = {'1',0};
WCHAR five[] = {'5',0};
DWORD cookie;
HRESULT hres;
hres = CreateBindCtx(0, &bindctx);
ok(hres == S_OK, "CreateBindCtx() failed: 0x%08x\n", hres);
hres = CreateItemMoniker(one, five, &dummy);
ok(hres == S_OK, "CreateItemMoniker() failed: 0x%08x\n", hres);
......@@ -198,6 +194,7 @@ static void test_GetObject(void)
ok(hres == MK_E_UNAVAILABLE, "expected MK_E_UNAVAILABLE, got 0x%08x\n", hres);
IHlinkBrowseContext_Release(bc);
IMoniker_Release(dummy);
}
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