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
6a74a078
Commit
6a74a078
authored
Nov 28, 2014
by
Jacek Caban
Committed by
Alexandre Julliard
Nov 28, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Always ignore DISPATCH_PROPERTYPUTREF in InvokeEx.
parent
7b5bf3d4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
dispex.c
dlls/mshtml/dispex.c
+3
-2
No files found.
dlls/mshtml/dispex.c
View file @
6a74a078
...
...
@@ -1230,7 +1230,6 @@ static HRESULT invoke_builtin_prop(DispatchEx *This, DISPID id, LCID lcid, WORD
switch
(
flags
)
{
case
DISPATCH_PROPERTYPUT
:
case
DISPATCH_PROPERTYPUT
|
DISPATCH_PROPERTYPUTREF
:
if
(
res
)
V_VT
(
res
)
=
VT_EMPTY
;
hres
=
builtin_propput
(
This
,
func
,
dp
,
caller
);
...
...
@@ -1421,6 +1420,9 @@ static HRESULT WINAPI DispatchEx_InvokeEx(IDispatchEx *iface, DISPID id, LCID lc
TRACE
(
"(%p)->(%x %x %x %p %p %p %p)
\n
"
,
This
,
id
,
lcid
,
wFlags
,
pdp
,
pvarRes
,
pei
,
pspCaller
);
if
(
wFlags
==
(
DISPATCH_PROPERTYPUT
|
DISPATCH_PROPERTYPUTREF
))
wFlags
=
DISPATCH_PROPERTYPUT
;
switch
(
get_dispid_type
(
id
))
{
case
DISPEXPROP_CUSTOM
:
if
(
!
This
->
data
->
vtbl
||
!
This
->
data
->
vtbl
->
invoke
)
...
...
@@ -1453,7 +1455,6 @@ static HRESULT WINAPI DispatchEx_InvokeEx(IDispatchEx *iface, DISPID id, LCID lc
return
DISP_E_UNKNOWNNAME
;
V_VT
(
pvarRes
)
=
VT_EMPTY
;
return
variant_copy
(
pvarRes
,
&
prop
->
var
);
case
DISPATCH_PROPERTYPUT
|
DISPATCH_PROPERTYPUTREF
:
case
DISPATCH_PROPERTYPUT
:
if
(
pdp
->
cArgs
!=
1
||
(
pdp
->
cNamedArgs
==
1
&&
*
pdp
->
rgdispidNamedArgs
!=
DISPID_PROPERTYPUT
)
||
pdp
->
cNamedArgs
>
1
)
{
...
...
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