From 6401720dafdec4eba7aa52e4fbe9da8479b31a2c Mon Sep 17 00:00:00 2001 From: Jeremy White Date: Fri, 11 Dec 2009 09:25:25 -0600 Subject: [PATCH] oleaut32/tests: Avoid a memory leak; spotted by Valgrind. --- dlls/oleaut32/tests/usrmarshal.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dlls/oleaut32/tests/usrmarshal.c b/dlls/oleaut32/tests/usrmarshal.c index d57802cb3ba..9756eb4050a 100644 --- a/dlls/oleaut32/tests/usrmarshal.c +++ b/dlls/oleaut32/tests/usrmarshal.c @@ -396,7 +396,10 @@ static void test_marshal_LPSAFEARRAY(void) hr = SafeArrayGetElement(lpsa2, indices, &gotvalue); ok(hr == S_OK, "Failed to get bstr element at hres 0x%x\n", hr); if (hr == S_OK) + { ok(VarBstrCmp(values[i], gotvalue, 0, 0) == VARCMP_EQ, "String %d does not match\n", i); + SysFreeString(gotvalue); + } } SysFreeString(values[i]);