diff options
Diffstat (limited to 'elf')
-rw-r--r-- | elf/dl-support.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/elf/dl-support.c b/elf/dl-support.c index 41997cc..8b69ef0 100644 --- a/elf/dl-support.c +++ b/elf/dl-support.c @@ -46,6 +46,8 @@ struct r_search_path *_dl_search_paths; const char *_dl_profile; struct link_map *_dl_profile_map; +extern void __libc_init_secure (void); + static void non_dynamic_init (void) __attribute__ ((unused)); @@ -54,6 +56,10 @@ non_dynamic_init (void) { _dl_verbose = *(getenv ("LD_WARN") ?: "") == '\0' ? 0 : 1; + _dl_pagesize = __getpagesize (); + + __libc_init_secure (); + /* Initialize the data structures for the search paths for shared objects. */ _dl_init_paths (); @@ -65,7 +71,5 @@ non_dynamic_init (void) /* Now determine the length of the platform string. */ if (_dl_platform != NULL) _dl_platformlen = strlen (_dl_platform); - - _dl_pagesize = __getpagesize (); } text_set_element (__libc_subinit, non_dynamic_init); |