Commit 5324cb61 authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

browseui: Fix two memory leaks in the autocomplete tests.

parent b2d1c3ee
......@@ -321,6 +321,9 @@ static void test_ACLMulti(void)
ok(mgr->lpVtbl->Release(mgr) == 0, "Unexpected references\n");
ok(acl1->ref == 1, "acl1 not released\n");
ok(acl2->ref == 1, "acl2 not released\n");
CoTaskMemFree(acl1);
CoTaskMemFree(acl2);
}
START_TEST(autocomplete)
......
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