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
56c6f767
Commit
56c6f767
authored
Oct 08, 2008
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Oct 08, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz: Use the right FAILED/SUCCEEDED macro instead of negating the opposite.
parent
dd843b87
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
filtergraph.c
dlls/quartz/filtergraph.c
+2
-2
filtermapper.c
dlls/quartz/filtermapper.c
+1
-1
No files found.
dlls/quartz/filtergraph.c
View file @
56c6f767
...
...
@@ -1367,7 +1367,7 @@ error:
IFilterGraph2_RemoveFilter
(
iface
,
pfilter
);
IBaseFilter_Release
(
pfilter
);
}
if
(
!
FAIL
ED
(
hr
))
DebugBreak
();
if
(
SUCCEED
ED
(
hr
))
DebugBreak
();
}
IEnumMoniker_Release
(
pEnumMoniker
);
...
...
@@ -2140,7 +2140,7 @@ static HRESULT all_renderers_seek(IFilterGraphImpl *This, fnFoundSeek FoundSeek,
IMediaSeeking_Release
(
seek
);
if
(
hr_return
!=
E_NOTIMPL
)
allnotimpl
=
FALSE
;
if
(
hr_return
==
S_OK
||
(
FAILED
(
hr
)
&&
hr
!=
E_NOTIMPL
&&
!
FAIL
ED
(
hr_return
)))
if
(
hr_return
==
S_OK
||
(
FAILED
(
hr
)
&&
hr
!=
E_NOTIMPL
&&
SUCCEED
ED
(
hr_return
)))
hr_return
=
hr
;
}
}
...
...
dlls/quartz/filtermapper.c
View file @
56c6f767
...
...
@@ -1297,7 +1297,7 @@ static HRESULT WINAPI FilterMapper_EnumMatchingFilters(
NULL
,
&
GUID_NULL
);
if
(
!
SUCCEED
ED
(
hr
))
if
(
FAIL
ED
(
hr
))
return
hr
;
while
(
IEnumMoniker_Next
(
ppEnumMoniker
,
1
,
&
IMon
,
&
nb
)
==
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