From f068eb9acd5b9bec6c7157bf763095d82c4cd343 Mon Sep 17 00:00:00 2001 From: Nikolay Sivov Date: Wed, 22 Apr 2015 12:28:20 +0300 Subject: [PATCH] wbemprox/tests: Fix interface instance leak (Valgrind). --- dlls/wbemprox/tests/query.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/wbemprox/tests/query.c b/dlls/wbemprox/tests/query.c index 7e031d2fada..eb3bd585453 100644 --- a/dlls/wbemprox/tests/query.c +++ b/dlls/wbemprox/tests/query.c @@ -267,6 +267,7 @@ static void test_Win32_Process( IWbemServices *services ) } hr = IWbemClassObject_GetMethod( process, getownerW, 0, NULL, NULL ); ok( hr == S_OK, "failed to get GetOwner method %08x\n", hr ); + IWbemClassObject_Release( process ); out = NULL; method = SysAllocString( getownerW );