setting MALLOC_CHECK_=0 for charon to not use glibc's malloc checker

This commit is contained in:
Martin Willi 2007-05-02 09:59:47 +00:00
parent 0ccb275a93
commit 3d63b7639e
1 changed files with 2 additions and 0 deletions

View File

@ -207,6 +207,8 @@ starter_start_charon (starter_config_t *cfg, bool debug)
/* child */
setsid();
sigprocmask(SIG_SETMASK, 0, NULL);
/* disable glibc's malloc checker, conflicts with leak detective */
setenv("MALLOC_CHECK_", "0", 1);
execv(arg[0], arg);
plog("can't execv(%s,...): %s", arg[0], strerror(errno));
exit(1);