Commit 88a5bdb8 authored by Detlef Riekenberg's avatar Detlef Riekenberg Committed by Alexandre Julliard

msi: Remove redundant NULL check before SysFreeString.

parent f4558c64
......@@ -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");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment