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
efb3c48d
Commit
efb3c48d
authored
Feb 10, 2011
by
Austin English
Committed by
Alexandre Julliard
Feb 14, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32/tests: Make sure to use return values (LLVM/Clang).
parent
c57c9ce3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
moniker.c
dlls/ole32/tests/moniker.c
+2
-1
No files found.
dlls/ole32/tests/moniker.c
View file @
efb3c48d
...
...
@@ -1012,7 +1012,6 @@ static void test_MkParseDisplayName(void)
hr
=
IEnumMoniker_QueryInterface
(
spEM1
,
&
IID_IUnknown
,
(
void
*
)
&
lpEM1
);
/* Register a couple of Monikers and check is ok */
ok
(
hr
==
0
,
"IEnumMoniker_QueryInterface hr %08x %p
\n
"
,
hr
,
lpEM1
);
hr
=
MK_E_NOOBJECT
;
matchCnt
=
count_moniker_matches
(
pbc
,
spEM1
);
trace
(
"Number of matches is %i
\n
"
,
matchCnt
);
...
...
@@ -1276,6 +1275,7 @@ static void test_moniker(
IROTData_Release
(
rotdata
);
hr
=
CreateStreamOnHGlobal
(
NULL
,
TRUE
,
&
stream
);
ok_ole_success
(
hr
,
CreateStreamOnHGlobal
);
/* Saving */
...
...
@@ -1456,6 +1456,7 @@ static void test_file_moniker(WCHAR* path)
ok_ole_success
(
hr
,
CreateFileMoniker
);
hr
=
CreateStreamOnHGlobal
(
NULL
,
TRUE
,
&
stream
);
ok_ole_success
(
hr
,
CreateStreamOnHGlobal
);
/* Marshal */
hr
=
CoMarshalInterface
(
stream
,
&
IID_IMoniker
,
(
IUnknown
*
)
moniker1
,
MSHCTX_INPROC
,
NULL
,
MSHLFLAGS_NORMAL
);
...
...
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