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
57b42ae7
Commit
57b42ae7
authored
May 08, 2006
by
Robert Shearman
Committed by
Alexandre Julliard
May 08, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Make the size returned by CompositeMonikerImpl_GetMarshalSizeMax match…
ole32: Make the size returned by CompositeMonikerImpl_GetMarshalSizeMax match that returned by native.
parent
50ec1d68
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
5 deletions
+2
-5
compositemoniker.c
dlls/ole32/compositemoniker.c
+1
-1
moniker.c
dlls/ole32/tests/moniker.c
+1
-4
No files found.
dlls/ole32/compositemoniker.c
View file @
57b42ae7
...
...
@@ -1368,7 +1368,7 @@ static HRESULT WINAPI CompositeMonikerMarshalImpl_GetMarshalSizeMax(
TRACE
(
"(%s, %p, %lx, %p, %lx, %p)
\n
"
,
debugstr_guid
(
riid
),
pv
,
dwDestContext
,
pvDestContext
,
mshlflags
,
pSize
);
*
pSize
=
0
;
*
pSize
=
0
x10
;
/* to match native */
hr
=
IMoniker_Enum
(
This
,
TRUE
,
&
pEnumMk
);
if
(
FAILED
(
hr
))
return
hr
;
...
...
dlls/ole32/tests/moniker.c
View file @
57b42ae7
...
...
@@ -644,11 +644,8 @@ static void test_generic_composite_moniker(void)
hr
=
CreateGenericComposite
(
moniker1
,
moniker2
,
&
moniker
);
ok_ole_success
(
hr
,
CreateGenericComposite
);
/* FIXME: marshal data test commented out as the written custom marshal
* size in the OBJREF header doesn't match in ours and native don't match,
* probably due to a bug in Microsoft's implementation. */
test_moniker
(
"generic composite moniker"
,
moniker
,
NULL
/*expected_gc_moniker_marshal_data*/
,
sizeof
(
expected_gc_moniker_marshal_data
),
expected_gc_moniker_marshal_data
,
sizeof
(
expected_gc_moniker_marshal_data
),
expected_gc_moniker_saved_data
,
sizeof
(
expected_gc_moniker_saved_data
),
expected_gc_moniker_comparison_data
,
sizeof
(
expected_gc_moniker_comparison_data
));
...
...
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