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
7f4d634e
Commit
7f4d634e
authored
Aug 19, 2012
by
Nikolay Sivov
Committed by
Alexandre Julliard
Aug 20, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mciqtz: Call interface methods properly.
parent
316ca9ed
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
mciqtz.c
dlls/mciqtz32/mciqtz.c
+6
-6
No files found.
dlls/mciqtz32/mciqtz.c
View file @
7f4d634e
...
...
@@ -241,13 +241,13 @@ static DWORD MCIQTZ_mciOpen(UINT wDevID, DWORD dwFlags,
err:
if
(
wma
->
vidbasic
)
I
Unknown
_Release
(
wma
->
vidbasic
);
I
BasicVideo
_Release
(
wma
->
vidbasic
);
wma
->
vidbasic
=
NULL
;
if
(
wma
->
seek
)
I
Unknown
_Release
(
wma
->
seek
);
I
MediaSeeking
_Release
(
wma
->
seek
);
wma
->
seek
=
NULL
;
if
(
wma
->
vidwin
)
I
Unknown
_Release
(
wma
->
vidwin
);
I
VideoWindow
_Release
(
wma
->
vidwin
);
wma
->
vidwin
=
NULL
;
if
(
wma
->
pgraph
)
IGraphBuilder_Release
(
wma
->
pgraph
);
...
...
@@ -282,9 +282,9 @@ static DWORD MCIQTZ_mciClose(UINT wDevID, DWORD dwFlags, LPMCI_GENERIC_PARMS lpP
MCIQTZ_mciStop
(
wDevID
,
MCI_WAIT
,
NULL
);
if
(
wma
->
opened
)
{
I
Unknown
_Release
(
wma
->
vidwin
);
I
Unknown
_Release
(
wma
->
vidbasic
);
I
Unknown
_Release
(
wma
->
seek
);
I
VideoWindow
_Release
(
wma
->
vidwin
);
I
BasicVideo
_Release
(
wma
->
vidbasic
);
I
MediaSeeking
_Release
(
wma
->
seek
);
IMediaEvent_Release
(
wma
->
mevent
);
IGraphBuilder_Release
(
wma
->
pgraph
);
IMediaControl_Release
(
wma
->
pmctrl
);
...
...
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