From 61a1dae39885d20de1da321ff742697e7634f0fd Mon Sep 17 00:00:00 2001 From: Sven Baars Date: Thu, 20 Dec 2018 21:18:29 +0100 Subject: [PATCH] propsys/tests: Fix a memory leak (Valgrind). Signed-off-by: Sven Baars Signed-off-by: Alexandre Julliard --- dlls/propsys/tests/propstore.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/propsys/tests/propstore.c b/dlls/propsys/tests/propstore.c index 01500dd3f91..3fe8613a8b8 100644 --- a/dlls/propsys/tests/propstore.c +++ b/dlls/propsys/tests/propstore.c @@ -214,6 +214,7 @@ static void test_persistserialized(void) if (FAILED(hr)) { + IPropertyStore_Release(propstore); skip("IPersistSerializedPropStorage not supported\n"); return; }