malloc_debug_flags = SCALABLE_MALLOC_ABORT_ON_CORRUPTION; // Set always on 64-bit processes
#else
int libSystemVersion = NSVersionOfLinkTimeLibrary("System");
- if ((-1 != libSystemVersion) && ((libSystemVersion >> 16) < 126) )
+ if ((-1 != libSystemVersion) && ((libSystemVersion >> 16) < 126))
malloc_debug_flags = 0;
else
malloc_debug_flags = SCALABLE_MALLOC_ABORT_ON_CORRUPTION;
{
MALLOC_LOCK();
/*
+ *
* 2. malloc will no longer take notice of *programmatic* changes to the MALLOC_* environment variables
* (i.e. calls to putenv() or setenv() that manipulate these environment variables.)
*