Commit c5c54480 authored by Gijs Vermeulen's avatar Gijs Vermeulen Committed by Alexandre Julliard

atl100/tests: Fix a memory leak (Valgrind).

parent 9d79aa68
......@@ -964,6 +964,8 @@ static void test_AtlAxCreateControl(void)
ok(hr == S_OK, "got 0x%08x\n", hr);
ok(container != NULL, "returned %p!\n", container);
ok(control != NULL, "returned %p\n", control);
IUnknown_Release(container);
IUnknown_Release(control);
DestroyWindow(hwnd);
container = NULL;
......
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