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
c3a4942b
Commit
c3a4942b
authored
Feb 16, 2012
by
Jörg Höhle
Committed by
Alexandre Julliard
Feb 17, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mciwave: Zero closed resource pointer to prevent reuse.
parent
be4d45ca
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
mciwave.c
dlls/mciwave/mciwave.c
+5
-0
No files found.
dlls/mciwave/mciwave.c
View file @
c3a4942b
...
@@ -870,6 +870,10 @@ static DWORD WAVE_mciPlay(MCIDEVICEID wDevID, DWORD_PTR dwFlags, DWORD_PTR pmt,
...
@@ -870,6 +870,10 @@ static DWORD WAVE_mciPlay(MCIDEVICEID wDevID, DWORD_PTR dwFlags, DWORD_PTR pmt,
whidx
=
0
;
whidx
=
0
;
wmw
->
hEvent
=
CreateEventW
(
NULL
,
FALSE
,
FALSE
,
NULL
);
wmw
->
hEvent
=
CreateEventW
(
NULL
,
FALSE
,
FALSE
,
NULL
);
if
(
!
wmw
->
hEvent
)
{
dwRet
=
MCIERR_OUT_OF_MEMORY
;
goto
cleanUp
;
}
wmw
->
dwEventCount
=
1L
;
/* for first buffer */
wmw
->
dwEventCount
=
1L
;
/* for first buffer */
TRACE
(
"Playing (normalized) from byte=%u for %u bytes
\n
"
,
wmw
->
dwPosition
,
left
);
TRACE
(
"Playing (normalized) from byte=%u for %u bytes
\n
"
,
wmw
->
dwPosition
,
left
);
...
@@ -921,6 +925,7 @@ cleanUp:
...
@@ -921,6 +925,7 @@ cleanUp:
wmw
->
hWave
=
0
;
wmw
->
hWave
=
0
;
}
}
CloseHandle
(
wmw
->
hEvent
);
CloseHandle
(
wmw
->
hEvent
);
wmw
->
hEvent
=
NULL
;
wmw
->
dwStatus
=
MCI_MODE_STOP
;
wmw
->
dwStatus
=
MCI_MODE_STOP
;
...
...
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