Commit 27e976c4 authored by Alexandre Julliard's avatar Alexandre Julliard

oleaut32: Fix scope of a local array variable.

parent b445b7fe
...@@ -7242,6 +7242,7 @@ static HRESULT WINAPI ITypeInfo_fnInvoke( ...@@ -7242,6 +7242,7 @@ static HRESULT WINAPI ITypeInfo_fnInvoke(
UINT cNamedArgs = pDispParams->cNamedArgs; UINT cNamedArgs = pDispParams->cNamedArgs;
DISPID *rgdispidNamedArgs = pDispParams->rgdispidNamedArgs; DISPID *rgdispidNamedArgs = pDispParams->rgdispidNamedArgs;
UINT vargs_converted=0; UINT vargs_converted=0;
SAFEARRAY *a;
hres = S_OK; hres = S_OK;
...@@ -7363,7 +7364,6 @@ static HRESULT WINAPI ITypeInfo_fnInvoke( ...@@ -7363,7 +7364,6 @@ static HRESULT WINAPI ITypeInfo_fnInvoke(
} }
else if ((rgvt[i] == (VT_VARIANT | VT_ARRAY) || rgvt[i] == (VT_VARIANT | VT_ARRAY | VT_BYREF)) && func_desc->cParamsOpt < 0) else if ((rgvt[i] == (VT_VARIANT | VT_ARRAY) || rgvt[i] == (VT_VARIANT | VT_ARRAY | VT_BYREF)) && func_desc->cParamsOpt < 0)
{ {
SAFEARRAY *a;
SAFEARRAYBOUND bound; SAFEARRAYBOUND bound;
VARIANT *v; VARIANT *v;
LONG j; LONG j;
......
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