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
04a21024
Commit
04a21024
authored
Dec 11, 2009
by
Jeremy White
Committed by
Alexandre Julliard
Dec 11, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Use wire sizes for marshaled safe arrays of bstrs and variants; fixes…
oleaut32: Use wire sizes for marshaled safe arrays of bstrs and variants; fixes a test failure on win64.
parent
5284baa8
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
3 deletions
+24
-3
usrmarshal.c
dlls/oleaut32/usrmarshal.c
+24
-3
No files found.
dlls/oleaut32/usrmarshal.c
View file @
04a21024
...
@@ -763,6 +763,26 @@ static inline SF_TYPE SAFEARRAY_GetUnionType(SAFEARRAY *psa)
...
@@ -763,6 +763,26 @@ static inline SF_TYPE SAFEARRAY_GetUnionType(SAFEARRAY *psa)
}
}
}
}
static
DWORD
elem_wire_size
(
LPSAFEARRAY
lpsa
,
SF_TYPE
sftype
)
{
if
(
sftype
==
SF_BSTR
)
return
sizeof
(
DWORD
);
else
if
(
sftype
==
SF_VARIANT
)
return
sizeof
(
variant_wire_t
)
-
sizeof
(
DWORD
);
else
return
lpsa
->
cbElements
;
}
static
DWORD
elem_mem_size
(
wireSAFEARRAY
wiresa
,
SF_TYPE
sftype
)
{
if
(
sftype
==
SF_BSTR
)
return
sizeof
(
BSTR
);
else
if
(
sftype
==
SF_VARIANT
)
return
sizeof
(
VARIANT
);
else
return
wiresa
->
cbElements
;
}
ULONG
WINAPI
LPSAFEARRAY_UserSize
(
ULONG
*
pFlags
,
ULONG
StartingSize
,
LPSAFEARRAY
*
ppsa
)
ULONG
WINAPI
LPSAFEARRAY_UserSize
(
ULONG
*
pFlags
,
ULONG
StartingSize
,
LPSAFEARRAY
*
ppsa
)
{
{
ULONG
size
=
StartingSize
;
ULONG
size
=
StartingSize
;
...
@@ -868,13 +888,15 @@ unsigned char * WINAPI LPSAFEARRAY_UserMarshal(ULONG *pFlags, unsigned char *Buf
...
@@ -868,13 +888,15 @@ unsigned char * WINAPI LPSAFEARRAY_UserMarshal(ULONG *pFlags, unsigned char *Buf
SF_TYPE
sftype
;
SF_TYPE
sftype
;
GUID
guid
;
GUID
guid
;
sftype
=
SAFEARRAY_GetUnionType
(
psa
);
*
(
ULONG
*
)
Buffer
=
psa
->
cDims
;
*
(
ULONG
*
)
Buffer
=
psa
->
cDims
;
Buffer
+=
sizeof
(
ULONG
);
Buffer
+=
sizeof
(
ULONG
);
*
(
USHORT
*
)
Buffer
=
psa
->
cDims
;
*
(
USHORT
*
)
Buffer
=
psa
->
cDims
;
Buffer
+=
sizeof
(
USHORT
);
Buffer
+=
sizeof
(
USHORT
);
*
(
USHORT
*
)
Buffer
=
psa
->
fFeatures
;
*
(
USHORT
*
)
Buffer
=
psa
->
fFeatures
;
Buffer
+=
sizeof
(
USHORT
);
Buffer
+=
sizeof
(
USHORT
);
*
(
ULONG
*
)
Buffer
=
psa
->
cbElements
;
*
(
ULONG
*
)
Buffer
=
elem_wire_size
(
psa
,
sftype
)
;
Buffer
+=
sizeof
(
ULONG
);
Buffer
+=
sizeof
(
ULONG
);
hr
=
SafeArrayGetVartype
(
psa
,
&
vt
);
hr
=
SafeArrayGetVartype
(
psa
,
&
vt
);
...
@@ -883,7 +905,6 @@ unsigned char * WINAPI LPSAFEARRAY_UserMarshal(ULONG *pFlags, unsigned char *Buf
...
@@ -883,7 +905,6 @@ unsigned char * WINAPI LPSAFEARRAY_UserMarshal(ULONG *pFlags, unsigned char *Buf
*
(
ULONG
*
)
Buffer
=
(
USHORT
)
psa
->
cLocks
|
(
vt
<<
16
);
*
(
ULONG
*
)
Buffer
=
(
USHORT
)
psa
->
cLocks
|
(
vt
<<
16
);
Buffer
+=
sizeof
(
ULONG
);
Buffer
+=
sizeof
(
ULONG
);
sftype
=
SAFEARRAY_GetUnionType
(
psa
);
*
(
ULONG
*
)
Buffer
=
sftype
;
*
(
ULONG
*
)
Buffer
=
sftype
;
Buffer
+=
sizeof
(
ULONG
);
Buffer
+=
sizeof
(
ULONG
);
...
@@ -1043,7 +1064,7 @@ unsigned char * WINAPI LPSAFEARRAY_UserUnmarshal(ULONG *pFlags, unsigned char *B
...
@@ -1043,7 +1064,7 @@ unsigned char * WINAPI LPSAFEARRAY_UserUnmarshal(ULONG *pFlags, unsigned char *B
(
*
ppsa
)
->
fFeatures
&=
FADF_AUTOSETFLAGS
;
(
*
ppsa
)
->
fFeatures
&=
FADF_AUTOSETFLAGS
;
(
*
ppsa
)
->
fFeatures
|=
(
wiresa
->
fFeatures
&
~
(
FADF_AUTOSETFLAGS
));
(
*
ppsa
)
->
fFeatures
|=
(
wiresa
->
fFeatures
&
~
(
FADF_AUTOSETFLAGS
));
/* FIXME: there should be a limit on how large wiresa->cbElements can be */
/* FIXME: there should be a limit on how large wiresa->cbElements can be */
(
*
ppsa
)
->
cbElements
=
wiresa
->
cbElements
;
(
*
ppsa
)
->
cbElements
=
elem_mem_size
(
wiresa
,
sftype
)
;
(
*
ppsa
)
->
cLocks
=
LOWORD
(
wiresa
->
cLocks
);
(
*
ppsa
)
->
cLocks
=
LOWORD
(
wiresa
->
cLocks
);
/* SafeArrayCreateEx allocates the data for us, but
/* SafeArrayCreateEx allocates the data for us, but
...
...
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