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
12977880
Commit
12977880
authored
Nov 16, 2010
by
Jörg Höhle
Committed by
Alexandre Julliard
Nov 17, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mciseq: Bogus sizeof led to incorrect positioning.
parent
896b7438
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
3 deletions
+1
-3
mcimidi.c
dlls/mciseq/mcimidi.c
+1
-3
No files found.
dlls/mciseq/mcimidi.c
View file @
12977880
...
@@ -952,7 +952,7 @@ static DWORD MIDI_mciPlay(UINT wDevID, DWORD dwFlags, LPMCI_PLAY_PARMS lpParms)
...
@@ -952,7 +952,7 @@ static DWORD MIDI_mciPlay(UINT wDevID, DWORD dwFlags, LPMCI_PLAY_PARMS lpParms)
}
}
if
(
!
(
dwFlags
&
MCI_WAIT
))
{
if
(
!
(
dwFlags
&
MCI_WAIT
))
{
return
MCI_SendCommandAsync
(
wDevID
,
MCI_PLAY
,
dwFlags
,
(
DWORD_PTR
)
lpParms
,
sizeof
(
LP
MCI_PLAY_PARMS
));
return
MCI_SendCommandAsync
(
wDevID
,
MCI_PLAY
,
dwFlags
,
(
DWORD_PTR
)
lpParms
,
sizeof
(
MCI_PLAY_PARMS
));
}
}
if
(
lpParms
&&
(
dwFlags
&
MCI_FROM
))
{
if
(
lpParms
&&
(
dwFlags
&
MCI_FROM
))
{
...
@@ -1191,8 +1191,6 @@ static DWORD MIDI_mciPlay(UINT wDevID, DWORD dwFlags, LPMCI_PLAY_PARMS lpParms)
...
@@ -1191,8 +1191,6 @@ static DWORD MIDI_mciPlay(UINT wDevID, DWORD dwFlags, LPMCI_PLAY_PARMS lpParms)
midiOutReset
((
HMIDIOUT
)
wmm
->
hMidi
);
midiOutReset
((
HMIDIOUT
)
wmm
->
hMidi
);
dwRet
=
midiOutClose
((
HMIDIOUT
)
wmm
->
hMidi
);
dwRet
=
midiOutClose
((
HMIDIOUT
)
wmm
->
hMidi
);
/* to restart playing at beginning when it's over */
wmm
->
dwPositionMS
=
0
;
if
(
dwFlags
&
MCI_NOTIFY
)
if
(
dwFlags
&
MCI_NOTIFY
)
oldcb
=
InterlockedExchangePointer
(
&
wmm
->
hCallback
,
NULL
);
oldcb
=
InterlockedExchangePointer
(
&
wmm
->
hCallback
,
NULL
);
...
...
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