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
3d6070ae
Commit
3d6070ae
authored
Mar 08, 2007
by
Rob Shearman
Committed by
Alexandre Julliard
Mar 08, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Set output param to NULL in BindCtxImpl_EnumObjectParam.
parent
bdefb46d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
bindctx.c
dlls/ole32/bindctx.c
+5
-1
moniker.c
dlls/ole32/tests/moniker.c
+0
-1
No files found.
dlls/ole32/bindctx.c
View file @
3d6070ae
...
...
@@ -423,7 +423,11 @@ BindCtxImpl_RevokeObjectParam(IBindCtx* iface,LPOLESTR ppenum)
static
HRESULT
WINAPI
BindCtxImpl_EnumObjectParam
(
IBindCtx
*
iface
,
IEnumString
**
pszkey
)
{
FIXME
(
"(%p,%p),stub!
\n
"
,
iface
,
pszkey
);
TRACE
(
"(%p,%p)
\n
"
,
iface
,
pszkey
);
*
pszkey
=
NULL
;
/* not implemented in native either */
return
E_NOTIMPL
;
}
...
...
dlls/ole32/tests/moniker.c
View file @
3d6070ae
...
...
@@ -1487,7 +1487,6 @@ static void test_bind_context(void)
hr
=
IBindCtx_EnumObjectParam
(
pBindCtx
,
&
pEnumString
);
ok
(
hr
==
E_NOTIMPL
,
"IBindCtx_EnumObjectParam should have returned E_NOTIMPL instead of 0x%08x
\n
"
,
hr
);
todo_wine
ok
(
!
pEnumString
,
"pEnumString should be NULL
\n
"
);
hr
=
IBindCtx_RegisterObjectBound
(
pBindCtx
,
NULL
);
...
...
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