Skip to content

Commit

Permalink
[BZ #384]
Browse files Browse the repository at this point in the history
Update.
	* elf/dl-support.c (_dl_non_dynamic_init): Fix cleaning of
	environment.  [BZ #384]
  • Loading branch information
Ulrich Drepper committed Sep 26, 2004
1 parent 412c954 commit c4e328a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
2004-09-26 Ulrich Drepper <drepper@redhat.com>

* elf/dl-support.c (_dl_non_dynamic_init): Fix cleaning of
environment. [BZ #384]

* sunrpc/clnt_udp.c (is_network_up): Use getifaddrs instead of ioctl.
* sunrpc/get_myaddr.c (get_myaddress): Likewise.
* sunrpc/pmap_clnt.c (__get_myaddress): Likewise.
Expand Down
20 changes: 10 additions & 10 deletions elf/dl-support.c
Original file line number Diff line number Diff line change
Expand Up @@ -257,22 +257,22 @@ _dl_non_dynamic_init (void)

if (__libc_enable_secure)
{
static const char *unsecure_envvars[] =
{
UNSECURE_ENVVARS,
static const char unsecure_envvars[] =
UNSECURE_ENVVARS
#ifdef EXTRA_UNSECURE_ENVVARS
EXTRA_UNSECURE_ENVVARS
#endif
};
size_t cnt;
;
const char *cp = unsecure_envvars;

for (cnt = 0;
cnt < sizeof (unsecure_envvars) / sizeof (unsecure_envvars[0]);
++cnt)
unsetenv (unsecure_envvars[cnt]);
while (cp < unsecure_envvars + sizeof (unsecure_envvars))
{
__unsetenv (cp);
cp = (const char *) __rawmemchr (cp, '\0') + 1;
}

if (__access ("/etc/suid-debug", F_OK) != 0)
unsetenv ("MALLOC_CHECK_");
__unsetenv ("MALLOC_CHECK_");
}

#ifdef DL_PLATFORM_INIT
Expand Down

0 comments on commit c4e328a

Please sign in to comment.