msi: Remove redundant NULL check before SysFreeString.

This commit is contained in:
Detlef Riekenberg 2008-09-21 15:58:28 +02:00 committed by Alexandre Julliard
parent f4558c6475
commit 88a5bdb858
1 changed files with 1 additions and 1 deletions

View File

@ -441,7 +441,7 @@ static HRESULT WINAPI AutomationObject_Invoke(
if (pVarResult == &varResultDummy) VariantClear(pVarResult);
/* Free function name if we retrieved it */
if (bstrName) SysFreeString(bstrName);
SysFreeString(bstrName);
TRACE("Returning 0x%08x, %s\n", hr, SUCCEEDED(hr) ? "ok" : "not ok");