diff options
author | Scott Long <scottl@FreeBSD.org> | 2005-09-18 03:45:24 +0000 |
---|---|---|
committer | Scott Long <scottl@FreeBSD.org> | 2005-09-18 03:45:24 +0000 |
commit | cc4a102d2bc56f1825ac85bd182df59defcacb6d (patch) | |
tree | 3940148506c4f6216b4dd7500febb56fa0d4d2c9 | |
parent | 84e108840b8470f9212a92ac85cb0c17cff3194a (diff) |
Notes
-rw-r--r-- | lib/libc/stdlib/malloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdlib/malloc.c b/lib/libc/stdlib/malloc.c index 5fbbe08883d92..384adc1a51755 100644 --- a/lib/libc/stdlib/malloc.c +++ b/lib/libc/stdlib/malloc.c @@ -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 |