oleaut32/tests: Avoid a memory leak; spotted by Valgrind.

This commit is contained in:
Jeremy White 2009-12-11 09:25:25 -06:00 committed by Alexandre Julliard
parent 026576995e
commit 6401720daf
1 changed files with 3 additions and 0 deletions

View File

@ -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]);