Robert Reif wrote:
Fix memory leak in mixer code.
Revised to remove unnecessary test before HeapFree.
Index: dlls/dsound/dsound.c
===
RCS file: /home/wine/wine/dlls/dsound/dsound.c,v
retrieving revision 1.24
diff -u -p -r1.24 dsound
On Sat, 22 Jan 2005 14:46:04 -0500, Robert Reif wrote:
> + if (This->tmp_buffer)
> + HeapFree(GetProcessHeap(),0,This->tmp_buffer);
There's no need for the test here, it's duplicated inside HeapFree. There
was a janitorial task to clean this up not that long ago.
thanks -mike