Displaying 1 result from an estimated 1 matches for "malloc_top_pad_".
1998 May 26
0
Re: Beware of dangerous enviroment (Re: Overflows in minicom)
...options
@@ -3365,15 +3367,15 @@
if(__libc_malloc_initialized) return;
__libc_malloc_initialized = 1;
- if((s = getenv("MALLOC_TRIM_THRESHOLD_")))
+ if((s = __libc_secure_getenv("MALLOC_TRIM_THRESHOLD_")))
mALLOPt(M_TRIM_THRESHOLD, atoi(s));
- if((s = getenv("MALLOC_TOP_PAD_")))
+ if((s = __libc_secure_getenv("MALLOC_TOP_PAD_")))
mALLOPt(M_TOP_PAD, atoi(s));
- if((s = getenv("MALLOC_MMAP_THRESHOLD_")))
+ if((s = __libc_secure_getenv("MALLOC_MMAP_THRESHOLD_")))
mALLOPt(M_MMAP_THRESHOLD, atoi(s));
- if((s = getenv("MA...