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
c503af85
Commit
c503af85
authored
Oct 14, 2012
by
Christian Costa
Committed by
Alexandre Julliard
Oct 15, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qcap: Remove useless FIXME.
parent
d13f7720
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
5 deletions
+2
-5
capturegraph.c
dlls/qcap/capturegraph.c
+2
-5
No files found.
dlls/qcap/capturegraph.c
View file @
c503af85
...
...
@@ -58,7 +58,6 @@ typedef struct CaptureGraphImpl
ICaptureGraphBuilder
ICaptureGraphBuilder_iface
;
LONG
ref
;
IGraphBuilder
*
mygraph
;
CRITICAL_SECTION
csFilter
;
}
CaptureGraphImpl
;
...
...
@@ -143,8 +142,7 @@ fnCaptureGraphBuilder2_AddRef(ICaptureGraphBuilder2 * iface)
return
ref
;
}
static
ULONG
WINAPI
fnCaptureGraphBuilder2_Release
(
ICaptureGraphBuilder2
*
iface
)
static
ULONG
WINAPI
fnCaptureGraphBuilder2_Release
(
ICaptureGraphBuilder2
*
iface
)
{
CaptureGraphImpl
*
This
=
impl_from_ICaptureGraphBuilder2
(
iface
);
DWORD
ref
=
InterlockedDecrement
(
&
This
->
ref
);
...
...
@@ -153,10 +151,9 @@ fnCaptureGraphBuilder2_Release(ICaptureGraphBuilder2 * iface)
if
(
!
ref
)
{
FIXME
(
"Release IGraphFilter or w/e
\n
"
);
This
->
csFilter
.
DebugInfo
->
Spare
[
0
]
=
0
;
DeleteCriticalSection
(
&
This
->
csFilter
);
if
(
This
->
mygraph
!=
NULL
)
if
(
This
->
mygraph
)
IGraphBuilder_Release
(
This
->
mygraph
);
CoTaskMemFree
(
This
);
ObjectRefCount
(
FALSE
);
...
...
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