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
d35e5773
Commit
d35e5773
authored
Dec 07, 2007
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Dec 07, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winecfg: Pass HEAP_ZERO_MEMORY to HeapAlloc() instead of clearing the memory…
winecfg: Pass HEAP_ZERO_MEMORY to HeapAlloc() instead of clearing the memory with a separate memset() call.
parent
195356c0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
audio.c
programs/winecfg/audio.c
+2
-4
No files found.
programs/winecfg/audio.c
View file @
d35e5773
...
...
@@ -541,10 +541,8 @@ static void findAudioDrivers(void)
if
(
numFound
)
{
loadedAudioDrv
=
HeapReAlloc
(
GetProcessHeap
(),
0
,
loadedAudioDrv
,
(
numFound
+
1
)
*
sizeof
(
AUDIO_DRIVER
));
CopyMemory
(
&
loadedAudioDrv
[
numFound
],
pAudioDrv
,
sizeof
(
AUDIO_DRIVER
));
}
else
{
loadedAudioDrv
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
AUDIO_DRIVER
));
ZeroMemory
(
&
loadedAudioDrv
[
0
],
sizeof
(
AUDIO_DRIVER
));
}
}
else
loadedAudioDrv
=
HeapAlloc
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
sizeof
(
AUDIO_DRIVER
));
}
/* check local copy of registry string for unloadable drivers */
...
...
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