--- deliantra/server/common/utils.C 2006/09/08 17:34:02 1.7 +++ deliantra/server/common/utils.C 2006/09/09 21:48:28 1.8 @@ -1,6 +1,6 @@ /* * static char *rcsid_utils_c = - * "$Id: utils.C,v 1.7 2006/09/08 17:34:02 root Exp $"; + * "$Id: utils.C,v 1.8 2006/09/09 21:48:28 root Exp $"; */ /* @@ -490,24 +490,28 @@ void * zero_initialised::operator new (size_t s) { + //return calloc (1, s); return g_slice_alloc0 (s); } void * zero_initialised::operator new [] (size_t s) { + //return calloc (1, s); return g_slice_alloc0 (s); } void zero_initialised::operator delete (void *p, size_t s) { + //free (p); return; g_slice_free1 (s, p); } void zero_initialised::operator delete [] (void *p, size_t s) { + //free (p); return; g_slice_free1 (s, p); }