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
f7fdaf1c
Commit
f7fdaf1c
authored
Nov 19, 2014
by
Nikolay Sivov
Committed by
Alexandre Julliard
Nov 19, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32/tests: Release() doesn't return HRESULT code.
parent
f6dde706
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
8 deletions
+3
-8
moniker.c
dlls/ole32/tests/moniker.c
+3
-8
No files found.
dlls/ole32/tests/moniker.c
View file @
f7fdaf1c
...
...
@@ -2022,9 +2022,7 @@ static void test_save_load_filemoniker(void)
hr
=
IMoniker_Save
(
pMk
,
pStm
,
TRUE
);
ok_ole_success
(
hr
,
"IMoniker_Save"
);
hr
=
IMoniker_Release
(
pMk
);
ok_ole_success
(
hr
,
"IMoniker_Release"
);
IMoniker_Release
(
pMk
);
/* overwrite the constants with various values */
hr
=
IStream_Seek
(
pStm
,
zero_pos
,
STREAM_SEEK_SET
,
NULL
);
...
...
@@ -2055,11 +2053,8 @@ static void test_save_load_filemoniker(void)
hr
=
IMoniker_Load
(
pMk
,
pStm
);
ok_ole_success
(
hr
,
"IMoniker_Load"
);
hr
=
IMoniker_Release
(
pMk
);
ok_ole_success
(
hr
,
"IMoniker_Release"
);
hr
=
IStream_Release
(
pStm
);
ok_ole_success
(
hr
,
"IStream_Release"
);
IMoniker_Release
(
pMk
);
IStream_Release
(
pStm
);
}
START_TEST
(
moniker
)
...
...
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