diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-05-22 16:45:42 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-05-22 16:45:42 +0000 |
commit | 6a7c9bb49a4074074175a751656d2b725dfede06 (patch) | |
tree | 596c38abf858d0397541fce1f90eccb4fcf28379 | |
parent | 3f651a4de302da8fbe4fb5f6e34f658bf11a8a7c (diff) | |
download | glibc-6a7c9bb49a4074074175a751656d2b725dfede06.tar.gz |
Update.
2000-05-22 Jakub Jelinek <jakub@redhat.com>
* elf/dl-load.c (_dl_init_paths): If env_path_list has 0 elements,
free it and set to (void *) -1.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | elf/dl-load.c | 6 |
2 files changed, 11 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2000-05-22 Jakub Jelinek <jakub@redhat.com> + + * elf/dl-load.c (_dl_init_paths): If env_path_list has 0 elements, + free it and set to (void *) -1. + 2000-05-22 Jakub Jelinek <jakub@redhat.com> * stdio-common/vfscanf.c (__vfscanf): Remove bogus check if '-' is diff --git a/elf/dl-load.c b/elf/dl-load.c index 10698ce045..f5b2bcd031 100644 --- a/elf/dl-load.c +++ b/elf/dl-load.c @@ -636,6 +636,12 @@ _dl_init_paths (const char *llp) (void) fillin_rpath (local_strdup (llp), env_path_list, ":;", __libc_enable_secure, "LD_LIBRARY_PATH", NULL); + + if (env_path_list[0] == NULL) + { + free (env_path_list); + env_path_list = (void *) -1; + } } else env_path_list = (void *) -1; |