Don't use malloc/free in winaspi32.
This commit is contained in:
parent
2b31a87b5d
commit
7e09874d92
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue