Module: wine Branch: master Commit: 1817d4cc12ef7484b862399fdb52c97b6c1ee432 URL: https://gitlab.winehq.org/wine/wine/-/commit/1817d4cc12ef7484b862399fdb52c97...
Author: Alex Henrie alexhenrie24@gmail.com Date: Sat Nov 11 13:37:22 2023 -0700
winmm/tests: Use calloc instead of HeapAlloc.
Fixes: bb6bcaf83e91882e0a523a4455ed7174b3ce3ad4
---
dlls/winmm/tests/wave.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/dlls/winmm/tests/wave.c b/dlls/winmm/tests/wave.c index 8c48e52cb01..673c2c010ac 100644 --- a/dlls/winmm/tests/wave.c +++ b/dlls/winmm/tests/wave.c @@ -1586,8 +1586,7 @@ static void test_fragmentsize(void) memset(hdr, 0, sizeof(hdr)); hdr[0].dwBufferLength = (fmt.nSamplesPerSec * fmt.nBlockAlign / 4) + 1; hdr[1].dwBufferLength = hdr[0].dwBufferLength - 2; - hdr[1].lpData = hdr[0].lpData = - HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, hdr[0].dwBufferLength); + hdr[1].lpData = hdr[0].lpData = calloc(1, hdr[0].dwBufferLength);
rc = waveOutPrepareHeader(wout, &hdr[0], sizeof(hdr[0])); ok(rc == MMSYSERR_NOERROR, "waveOutPrepareHeader failed: %s\n", wave_out_error(rc)); @@ -1694,8 +1693,7 @@ static void test_reentrant_callback(void) memset(hdr, 0, sizeof(hdr)); hdr[0].dwBufferLength = (fmt.nSamplesPerSec * fmt.nBlockAlign / 10); hdr[1].dwBufferLength = hdr[0].dwBufferLength; - hdr[1].lpData = hdr[0].lpData = - HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, hdr[0].dwBufferLength); + hdr[1].lpData = hdr[0].lpData = calloc(1, hdr[0].dwBufferLength);
rc = waveOutPrepareHeader(wout, &hdr[0], sizeof(hdr[0])); ok(rc == MMSYSERR_NOERROR, "waveOutPrepareHeader failed: %s\n", wave_out_error(rc));