Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
8f38cd8c
Commit
8f38cd8c
authored
Feb 06, 2007
by
Rob Shearman
Committed by
Alexandre Julliard
Feb 06, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Fix the missing argument handling for non-byref variant arguments.
parent
e2108fee
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
5 deletions
+14
-5
typelib.c
dlls/oleaut32/typelib.c
+14
-5
No files found.
dlls/oleaut32/typelib.c
View file @
8f38cd8c
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment