* sysdeps/generic/dl-sysdep.c: Initialize __libc_stack_end.
This commit is contained in:
Ulrich Drepper 2004-01-15 19:59:44 +00:00
parent 697afbe1c8
commit 80f50bfacf
2 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,6 @@
2004-01-15 Ulrich Drepper <drepper@redhat.com>
* sysdeps/generic/dl-sysdep.c: Initialize __libc_stack_end.
* elf/rtld.c: Initialize _dl_argv to allow aliasing.
* resolv/resolv.h: Add RES_USEBSTRING.

View File

@ -53,7 +53,7 @@ INTVARDEF(__libc_enable_secure)
int __libc_multiple_libcs = 0; /* Defining this here avoids the inclusion
of init-first. */
/* This variable contains the lowest stack address ever used. */
void *__libc_stack_end attribute_relro;
void *__libc_stack_end attribute_relro = NULL;
rtld_hidden_data_def(__libc_stack_end)
static ElfW(auxv_t) *_dl_auxv attribute_relro;