1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-01 22:05:08 +00:00
freebsd-ports/audio/mxv/files/patch-ag
1997-04-17 07:05:40 +00:00

17 lines
315 B
Plaintext

*** smartmem.C.orig Thu Apr 17 15:32:03 1997
--- smartmem.C Thu Apr 17 15:33:41 1997
***************
*** 64,70 ****
--- 64,74 ----
void
SmartMemory::free(void* ptr, unsigned size) {
if(ptr) {
+ #ifdef __FreeBSD__
+ ::free(ptr);
+ #else
::cfree(ptr);
+ #endif
totalBytes_Allocated -= size;
}
}