Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
156e2127
Commit
156e2127
authored
Aug 13, 2012
by
Jacek Caban
Committed by
Alexandre Julliard
Aug 13, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Fixed DISPATCH_PROPERTYGET|DISPATCH_METHOD support in invoke_builtin_prop.
parent
0ec75b1a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
dispex.c
dlls/mshtml/dispex.c
+8
-3
No files found.
dlls/mshtml/dispex.c
View file @
156e2127
...
...
@@ -985,9 +985,14 @@ static HRESULT invoke_builtin_prop(DispatchEx *This, DISPID id, LCID lcid, WORD
return
E_FAIL
;
}
hres
=
invoke_disp_value
(
This
,
V_DISPATCH
(
&
v
),
lcid
,
flags
,
dp
,
res
,
ei
,
caller
);
IDispatch_Release
(
V_DISPATCH
(
&
v
));
if
(
flags
!=
(
DISPATCH_PROPERTYGET
|
DISPATCH_METHOD
))
{
hres
=
invoke_disp_value
(
This
,
V_DISPATCH
(
&
v
),
lcid
,
flags
,
dp
,
res
,
ei
,
caller
);
IDispatch_Release
(
V_DISPATCH
(
&
v
));
}
else
if
(
res
)
{
*
res
=
v
;
}
else
{
IDispatch_Release
(
V_DISPATCH
(
&
v
));
}
}
}
...
...
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