diff options
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/libc/stdlib/malloc.c | 7 | 
1 files changed, 7 insertions, 0 deletions
| diff --git a/lib/libc/stdlib/malloc.c b/lib/libc/stdlib/malloc.c index fdcc751f3036..3cd58f75bd43 100644 --- a/lib/libc/stdlib/malloc.c +++ b/lib/libc/stdlib/malloc.c @@ -465,6 +465,13 @@ malloc_init ()  	}      } +    /* +     * Sensitive processes, somewhat arbitrarily defined here as setuid, +     * setgid, root and wheel cannot afford to have malloc mistakes. +     */ +    if (issetugid() || getuid() == 0 || getgid() == 0) +	    malloc_abort = 1; +      UTRACE(0, 0, 0);      /* | 
