diff options
author | Andreas Schwab <schwab@redhat.com> | 2010-09-15 07:20:57 -0700 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2010-09-15 07:20:57 -0700 |
commit | bc5fb0374c3ce6eca92f44d13a55b066e707c4a0 (patch) | |
tree | ee07a8ffc9fbd9b51873dbd01da87da7b78a1b70 /elf | |
parent | e66e7419a6f58200eec6941b14e2dcff9875cc6c (diff) | |
download | glibc-bc5fb0374c3ce6eca92f44d13a55b066e707c4a0.zip glibc-bc5fb0374c3ce6eca92f44d13a55b066e707c4a0.tar.gz glibc-bc5fb0374c3ce6eca92f44d13a55b066e707c4a0.tar.bz2 |
Don't try to free rpath strings allocated during startup
Diffstat (limited to 'elf')
-rw-r--r-- | elf/dl-load.c | 3 | ||||
-rw-r--r-- | elf/dl-support.c | 3 | ||||
-rw-r--r-- | elf/rtld.c | 4 |
3 files changed, 7 insertions, 3 deletions
diff --git a/elf/dl-load.c b/elf/dl-load.c index 0adddf5..a7162eb 100644 --- a/elf/dl-load.c +++ b/elf/dl-load.c @@ -787,9 +787,6 @@ _dl_init_paths (const char *llp) } else env_path_list.dirs = (void *) -1; - - /* Remember the last search directory added at startup. */ - GLRO(dl_init_all_dirs) = GL(dl_all_dirs); } diff --git a/elf/dl-support.c b/elf/dl-support.c index f94d2c4..5897b32 100644 --- a/elf/dl-support.c +++ b/elf/dl-support.c @@ -264,6 +264,9 @@ _dl_non_dynamic_init (void) objects. */ _dl_init_paths (getenv ("LD_LIBRARY_PATH")); + /* Remember the last search directory added at startup. */ + _dl_init_all_dirs = GL(dl_all_dirs); + _dl_lazy = *(getenv ("LD_BIND_NOW") ?: "") == '\0'; _dl_bind_not = *(getenv ("LD_BIND_NOT") ?: "") != '\0'; @@ -2291,6 +2291,10 @@ ERROR: ld.so: object '%s' cannot be loaded as audit interface: %s; ignored.\n", lossage); } + /* Remember the last search directory added at startup, now that + malloc will no longer be the one from dl-minimal.c. */ + GLRO(dl_init_all_dirs) = GL(dl_all_dirs); + if (! prelinked && rtld_multiple_ref) { /* There was an explicit ref to the dynamic linker as a shared lib. |