summaryrefslogtreecommitdiff
path: root/audio/mxv/patches/patch-ag
blob: 4454c809a56d5d05f56fe1a11cc55e5458f45129 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
*** 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;
  	}
  }