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
ccad9657
Commit
ccad9657
authored
Jun 03, 2007
by
Marcus Meissner
Committed by
Alexandre Julliard
Jun 04, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz: Added some error checking on failure to CreateClassEnumerator.
parent
2e5a48be
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
filtermapper.c
dlls/quartz/filtermapper.c
+7
-2
No files found.
dlls/quartz/filtermapper.c
View file @
ccad9657
...
...
@@ -962,9 +962,14 @@ static HRESULT WINAPI FilterMapper2_EnumMatchingFilters(
*
ppEnum
=
NULL
;
hr
=
CoCreateInstance
(
&
CLSID_SystemDeviceEnum
,
NULL
,
CLSCTX_INPROC
,
&
IID_ICreateDevEnum
,
(
LPVOID
*
)
&
pCreateDevEnum
);
if
(
FAILED
(
hr
))
return
hr
;
if
(
SUCCEEDED
(
hr
))
hr
=
ICreateDevEnum_CreateClassEnumerator
(
pCreateDevEnum
,
&
CLSID_ActiveMovieCategories
,
&
pEnumCat
,
0
);
hr
=
ICreateDevEnum_CreateClassEnumerator
(
pCreateDevEnum
,
&
CLSID_ActiveMovieCategories
,
&
pEnumCat
,
0
);
if
(
FAILED
(
hr
))
{
ICreateDevEnum_Release
(
pCreateDevEnum
);
return
hr
;
}
while
(
IEnumMoniker_Next
(
pEnumCat
,
1
,
&
pMonikerCat
,
NULL
)
==
S_OK
)
{
...
...
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