Commit 81eb827c authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

qedit/tests: Fix some leaks in tests (Valgrind).

parent af238f56
...@@ -106,6 +106,9 @@ static void test_timeline(void) ...@@ -106,6 +106,9 @@ static void test_timeline(void)
hr = IAMTimelineObj_GetTimelineNoRef(obj, &timeline2); hr = IAMTimelineObj_GetTimelineNoRef(obj, &timeline2);
ok(hr == E_NOINTERFACE, "Expected E_NOINTERFACE got %08x\n", hr); ok(hr == E_NOINTERFACE, "Expected E_NOINTERFACE got %08x\n", hr);
ok(!timeline2, "Expected NULL got %p\n", timeline2); ok(!timeline2, "Expected NULL got %p\n", timeline2);
IAMTimelineObj_Release(obj);
IAMTimeline_Release(timeline);
} }
static void test_timelineobj_interfaces(void) static void test_timelineobj_interfaces(void)
......
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