diff options
author | Ulrich Drepper <drepper@redhat.com> | 2005-01-04 07:11:05 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2005-01-04 07:11:05 +0000 |
commit | 3fb2606af3b1ab6e6bef7065c65eaca197d73a89 (patch) | |
tree | 6b5d86899fb2085d5a529de11242ef9ac0b0e09d /sysdeps/generic | |
parent | d410d5dc00490030ae22198f113c4709966cd2e0 (diff) | |
download | glibc-3fb2606af3b1ab6e6bef7065c65eaca197d73a89.tar glibc-3fb2606af3b1ab6e6bef7065c65eaca197d73a89.tar.gz glibc-3fb2606af3b1ab6e6bef7065c65eaca197d73a89.tar.bz2 glibc-3fb2606af3b1ab6e6bef7065c65eaca197d73a89.zip |
Update.
* sysdeps/generic/libc-start.c [SHARED] (__libc_start_main): Don't
initialize __environ again.
Diffstat (limited to 'sysdeps/generic')
-rw-r--r-- | sysdeps/generic/libc-start.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/generic/libc-start.c b/sysdeps/generic/libc-start.c index fc9df40996..ad5ebe0911 100644 --- a/sysdeps/generic/libc-start.c +++ b/sysdeps/generic/libc-start.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2003, 2004 Free Software Foundation, Inc. +/* Copyright (C) 1998-2003, 2004, 2005 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -106,9 +106,9 @@ LIBC_START_MAIN (int (*main) (int, char **, char ** MAIN_AUXVEC_DECL), __libc_multiple_libcs = &_dl_starting_up && !_dl_starting_up; +#ifndef SHARED INIT_ARGV_and_ENVIRON; -#ifndef SHARED /* Store the lowest stack address. This is done in ld.so if this is the code for the DSO. */ __libc_stack_end = stack_end; |