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
ad880ba0
Commit
ad880ba0
authored
Feb 10, 2009
by
Rob Shearman
Committed by
Alexandre Julliard
Feb 11, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Fix a test failure in the moniker tests on Win9x.
Also fix a crash in running the tests on Win95.
parent
1e8ae571
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
moniker.c
dlls/ole32/tests/moniker.c
+5
-2
No files found.
dlls/ole32/tests/moniker.c
View file @
ad880ba0
...
...
@@ -652,7 +652,9 @@ static void test_ROT(void)
ROTFLAGS_REGISTRATIONKEEPSALIVE
|
ROTFLAGS_ALLOWANYCLIENT
,
(
IUnknown
*
)
&
Test_ClassFactory
,
pMoniker
,
&
dwCookie
);
todo_wine
{
ok
(
hr
==
CO_E_WRONG_SERVER_IDENTITY
,
"IRunningObjectTable_Register should have returned CO_E_WRONG_SERVER_IDENTITY instead of 0x%08x
\n
"
,
hr
);
ok
(
hr
==
CO_E_WRONG_SERVER_IDENTITY
||
broken
(
hr
==
S_OK
)
/* Win9x */
,
"IRunningObjectTable_Register should have returned CO_E_WRONG_SERVER_IDENTITY instead of 0x%08x
\n
"
,
hr
);
}
if
(
hr
==
S_OK
)
IRunningObjectTable_Revoke
(
pROT
,
dwCookie
);
...
...
@@ -918,7 +920,8 @@ static void test_MkParseDisplayName(void)
hr
=
IMoniker_BindToObject
(
pmk
,
pbc
,
NULL
,
&
IID_IUnknown
,
(
LPVOID
*
)
&
object
);
ok_ole_success
(
hr
,
IMoniker_BindToObject
);
IUnknown_Release
(
object
);
if
(
SUCCEEDED
(
hr
))
IUnknown_Release
(
object
);
IMoniker_Release
(
pmk
);
}
IBindCtx_Release
(
pbc
);
...
...
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