Commit 17ffed02 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

Fixed HeapRealloc typo.

parent 2bc18169
......@@ -719,7 +719,7 @@ static int wodPlayer_WriteMaxFrags(WINE_WAVEOUT* wwo, DWORD* bytes)
{
if(wwo->sound_buffer)
{
HeapRealloc(GetProcessHeap(), 0, wwo->sound_buffer, toWrite);
wwo->sound_buffer = HeapReAlloc(GetProcessHeap(), 0, wwo->sound_buffer, toWrite);
wwo->buffer_size = toWrite;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment