oleaut32: Fix the missing argument handling for non-byref variant arguments.

This commit is contained in:
Rob Shearman 2007-02-06 19:24:12 +00:00 committed by Alexandre Julliard
parent e2108feec4
commit 8f38cd8c8c
1 changed files with 14 additions and 5 deletions

View File

@ -5569,11 +5569,20 @@ static HRESULT WINAPI ITypeInfo_fnInvoke(
}
else
{
VARIANTARG *missing_arg = INVBUF_GET_MISSING_ARG_ARRAY(buffer, func_desc->cParams);
V_VT(arg) = VT_VARIANT | VT_BYREF;
V_VARIANTREF(arg) = &missing_arg[i];
V_VT(V_VARIANTREF(arg)) = VT_ERROR;
V_ERROR(V_VARIANTREF(arg)) = DISP_E_PARAMNOTFOUND;
VARIANTARG *missing_arg;
/* if the function wants a pointer to a variant then
* set that up, otherwise just pass the VT_ERROR in
* the argument by value */
if (rgvt[i] & VT_BYREF)
{
missing_arg = INVBUF_GET_MISSING_ARG_ARRAY(buffer, func_desc->cParams) + i;
V_VT(arg) = VT_VARIANT | VT_BYREF;
V_VARIANTREF(arg) = missing_arg;
}
else
missing_arg = arg;
V_VT(missing_arg) = VT_ERROR;
V_ERROR(missing_arg) = DISP_E_PARAMNOTFOUND;
}
}
else