PATCH: winearts bug

Marcus Meissner marcus at jet.franken.de
Fri Jan 9 01:35:55 CST 2004


Hi,

Strange how this could be missed, my compile failed with this.

Ciao, Marcus

Changelog:
	fixed HeapRealloc typo.

Index: dlls/winmm/winearts/audio.c
===================================================================
RCS file: /home/wine/wine/dlls/winmm/winearts/audio.c,v
retrieving revision 1.14
diff -u -r1.14 audio.c
--- dlls/winmm/winearts/audio.c	9 Jan 2004 05:02:58 -0000	1.14
+++ dlls/winmm/winearts/audio.c	9 Jan 2004 07:34:59 -0000
@@ -719,7 +719,7 @@
     {
       if(wwo->sound_buffer)
       {
-	HeapRealloc(GetProcessHeap(), 0, wwo->sound_buffer, toWrite);
+	HeapReAlloc(GetProcessHeap(), 0, wwo->sound_buffer, toWrite);
 	wwo->buffer_size = toWrite;
       }
     }
-- 



More information about the wine-patches mailing list