Take a step closer to the release and turn off malloc debugging.

Approved by: re (implicit)
This commit is contained in:
scottl 2005-09-18 03:45:24 +00:00
parent bbfdfd22d0
commit 2b0a07b354

View File

@ -219,7 +219,7 @@ static unsigned malloc_ninfo;
static struct pgfree free_list;
/* Abort(), user doesn't handle problems. */
static int malloc_abort = 1;
static int malloc_abort = 0;
/* Are we trying to die ? */
static int suicide;
@ -242,7 +242,7 @@ static int malloc_sysv;
static int malloc_zero;
/* junk fill ? */
static int malloc_junk = 1;
static int malloc_junk = 0;
#ifdef HAS_UTRACE