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
28faa92c
Commit
28faa92c
authored
May 23, 2005
by
Michael Stefaniuc
Committed by
Alexandre Julliard
May 23, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix VariantChangeType: calls to VarDecFromCy and VarDecFromDisp had
source and destination swapped.
parent
5eb46095
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
variant.c
dlls/oleaut32/variant.c
+2
-2
No files found.
dlls/oleaut32/variant.c
View file @
28faa92c
...
...
@@ -493,8 +493,8 @@ static inline HRESULT VARIANT_Coerce(VARIANTARG* pd, LCID lcid, USHORT wFlags,
case
VT_R4
:
return
VarDecFromR4
(
V_R4
(
ps
),
&
V_DECIMAL
(
pd
));
case
VT_R8
:
return
VarDecFromR8
(
V_R8
(
ps
),
&
V_DECIMAL
(
pd
));
case
VT_DATE
:
return
VarDecFromDate
(
V_DATE
(
ps
),
&
V_DECIMAL
(
pd
));
case
VT_CY
:
return
VarDecFromCy
(
V_CY
(
p
d
),
&
V_DECIMAL
(
ps
));
case
VT_DISPATCH
:
return
VarDecFromDisp
(
V_DISPATCH
(
ps
),
lcid
,
&
V_DECIMAL
(
p
s
));
case
VT_CY
:
return
VarDecFromCy
(
V_CY
(
p
s
),
&
V_DECIMAL
(
pd
));
case
VT_DISPATCH
:
return
VarDecFromDisp
(
V_DISPATCH
(
ps
),
lcid
,
&
V_DECIMAL
(
p
d
));
case
VT_BSTR
:
return
VarDecFromStr
(
V_BSTR
(
ps
),
lcid
,
dwFlags
,
&
V_DECIMAL
(
pd
));
}
break
;
...
...
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