diff options
author | Ulrich Drepper <drepper@redhat.com> | 2006-04-24 17:26:23 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2006-04-24 17:26:23 +0000 |
commit | ceba6be798d7fa02e73549d7178ca81dd0900291 (patch) | |
tree | bf73d1a0b0afc90f5a8a11153518335accd8ca24 | |
parent | cf6ada44a2ad93c4155ce804ba3a1f2cf8cbe15f (diff) |
* malloc/arena.c (ptmalloc_init): Don't call __malloc_check_initcvs/fedora-glibc-20060424T2027
if MALLOC_CHECK_ env var contains an empty string.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | malloc/arena.c | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2006-04-24 Jakub Jelinek <jakub@redhat.com> + + * malloc/arena.c (ptmalloc_init): Don't call __malloc_check_init + if MALLOC_CHECK_ env var contains an empty string. + 2006-04-24 Ulrich Drepper <drepper@redhat.com> * sysdeps/posix/getaddrinfo.c (getaddrinfo): Always initialize in6ai. diff --git a/malloc/arena.c b/malloc/arena.c index 4d95462f26..6f0a9df8f1 100644 --- a/malloc/arena.c +++ b/malloc/arena.c @@ -551,8 +551,8 @@ ptmalloc_init (void) } s = getenv("MALLOC_CHECK_"); #endif - if(s) { - if(s[0]) mALLOPt(M_CHECK_ACTION, (int)(s[0] - '0')); + if(s && s[0]) { + mALLOPt(M_CHECK_ACTION, (int)(s[0] - '0')); if (check_action != 0) __malloc_check_init(); } |