From ffb9bd9e6c99677572b695d453c9b5c87a7162f4 Mon Sep 17 00:00:00 2001 From: Sven Baars Date: Fri, 4 Oct 2019 21:58:40 +0200 Subject: [PATCH] wbemprox/tests: Fix a memory leak (Valgrind). Signed-off-by: Sven Baars Signed-off-by: Hans Leidekker Signed-off-by: Alexandre Julliard --- 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 cdbbc028203..1c6ffcaf8dc 100644 --- a/dlls/wbemprox/tests/query.c +++ b/dlls/wbemprox/tests/query.c @@ -1654,6 +1654,7 @@ static void test_Win32_PnPEntity( IWbemServices *services ) VariantClear( &val ); } } + IWbemClassObject_Release( obj ); } SysFreeString( bstr );