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
17cff085
Commit
17cff085
authored
Mar 15, 2005
by
Jason Edmeades
Committed by
Alexandre Julliard
Mar 15, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid trap in mixerGetLineControlsA when cControls is uninitialized
and MIXER_GETLINECONTROLSSF_ONEBYTYPE requested.
parent
1a7a4fbe
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
winmm.c
dlls/winmm/winmm.c
+8
-0
No files found.
dlls/winmm/winmm.c
View file @
17cff085
...
@@ -488,7 +488,15 @@ UINT WINAPI mixerGetLineControlsA(HMIXEROBJ hmix, LPMIXERLINECONTROLSA lpmlcA,
...
@@ -488,7 +488,15 @@ UINT WINAPI mixerGetLineControlsA(HMIXEROBJ hmix, LPMIXERLINECONTROLSA lpmlcA,
mlcW
.
dwLineID
=
lpmlcA
->
dwLineID
;
mlcW
.
dwLineID
=
lpmlcA
->
dwLineID
;
mlcW
.
u
.
dwControlID
=
lpmlcA
->
u
.
dwControlID
;
mlcW
.
u
.
dwControlID
=
lpmlcA
->
u
.
dwControlID
;
mlcW
.
u
.
dwControlType
=
lpmlcA
->
u
.
dwControlType
;
mlcW
.
u
.
dwControlType
=
lpmlcA
->
u
.
dwControlType
;
/* Debugging on Windows shows for MIXER_GETLINECONTROLSF_ONEBYTYPE only,
the control count is assumed to be 1 - This is relied upon by a game,
"Dynomite Deluze" */
if
(
MIXER_GETLINECONTROLSF_ONEBYTYPE
==
fdwControls
)
{
mlcW
.
cControls
=
1
;
}
else
{
mlcW
.
cControls
=
lpmlcA
->
cControls
;
mlcW
.
cControls
=
lpmlcA
->
cControls
;
}
mlcW
.
cbmxctrl
=
sizeof
(
MIXERCONTROLW
);
mlcW
.
cbmxctrl
=
sizeof
(
MIXERCONTROLW
);
mlcW
.
pamxctrl
=
HeapAlloc
(
GetProcessHeap
(),
0
,
mlcW
.
pamxctrl
=
HeapAlloc
(
GetProcessHeap
(),
0
,
mlcW
.
cControls
*
mlcW
.
cbmxctrl
);
mlcW
.
cControls
*
mlcW
.
cbmxctrl
);
...
...
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