Commit 7e09874d authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

Don't use malloc/free in winaspi32.

parent 2b31a87b
......@@ -17,6 +17,8 @@
DEFAULT_DEBUG_CHANNEL(aspi)
#define malloc(x) HeapAlloc(GetProcessHeap(),0,x)
#define free(p) HeapFree(GetProcessHeap(),0,p)
/* FIXME!
* 1) Residual byte length reporting not handled
......
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