diff options
Diffstat (limited to 'miscutils')
-rw-r--r-- | miscutils/crond.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/miscutils/crond.c b/miscutils/crond.c index cf3323090..5ae0ff084 100644 --- a/miscutils/crond.c +++ b/miscutils/crond.c | |||
@@ -79,9 +79,9 @@ | |||
79 | #include "common_bufsiz.h" | 79 | #include "common_bufsiz.h" |
80 | #include <syslog.h> | 80 | #include <syslog.h> |
81 | 81 | ||
82 | /* glibc frees previous setenv'ed value when we do next setenv() | 82 | #if 0 |
83 | * of the same variable. uclibc does not do this! */ | 83 | /* If libc tracks and reuses setenv()-allocated memory, ok to set this to 0 */ |
84 | #if (defined(__GLIBC__) && !defined(__UCLIBC__)) /* || OTHER_SAFE_LIBC... */ | 84 | /* Neither glibc nor uclibc do that! */ |
85 | # define SETENV_LEAKS 0 | 85 | # define SETENV_LEAKS 0 |
86 | #else | 86 | #else |
87 | # define SETENV_LEAKS 1 | 87 | # define SETENV_LEAKS 1 |