Use correct pointer for SysFreeString.

This commit is contained in:
Marcus Meissner 2003-12-01 22:36:49 +00:00 committed by Alexandre Julliard
parent a66d2a2cbf
commit 236ad0df3c

View File

@ -466,8 +466,9 @@ serialize_param(
return hres; return hres;
} }
} }
if (dealloc && arg) if (dealloc && arg)
SysFreeString((BSTR)arg); SysFreeString((BSTR)*arg);
return S_OK; return S_OK;
} }
case VT_PTR: { case VT_PTR: {