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
1e0d9935
Commit
1e0d9935
authored
May 22, 2019
by
Zebediah Figura
Committed by
Alexandre Julliard
May 23, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qcap/audiorecord: Use strmbase_filter_cleanup().
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
fb08e32e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
audiorecord.c
dlls/qcap/audiorecord.c
+2
-1
No files found.
dlls/qcap/audiorecord.c
View file @
1e0d9935
...
...
@@ -99,9 +99,10 @@ static ULONG WINAPI Unknown_AddRef(IUnknown *iface)
static
ULONG
WINAPI
Unknown_Release
(
IUnknown
*
iface
)
{
AudioRecord
*
This
=
impl_from_IUnknown
(
iface
);
ULONG
ref
=
BaseFilterImpl_Release
(
&
This
->
filter
.
IBaseFilter_iface
);
ULONG
ref
=
InterlockedDecrement
(
&
This
->
filter
.
refCount
);
TRACE
(
"(%p/%p)->() ref=%d
\n
"
,
iface
,
This
,
ref
);
if
(
!
ref
)
{
strmbase_filter_cleanup
(
&
This
->
filter
);
CoTaskMemFree
(
This
);
}
return
ref
;
...
...
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