mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-24 02:03:35 +08:00
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.
This commit is contained in:
parent
3f651a4de3
commit
6a7c9bb49a
@ -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>
|
2000-05-22 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
* stdio-common/vfscanf.c (__vfscanf): Remove bogus check if '-' is
|
* stdio-common/vfscanf.c (__vfscanf): Remove bogus check if '-' is
|
||||||
|
@ -636,6 +636,12 @@ _dl_init_paths (const char *llp)
|
|||||||
|
|
||||||
(void) fillin_rpath (local_strdup (llp), env_path_list, ":;",
|
(void) fillin_rpath (local_strdup (llp), env_path_list, ":;",
|
||||||
__libc_enable_secure, "LD_LIBRARY_PATH", NULL);
|
__libc_enable_secure, "LD_LIBRARY_PATH", NULL);
|
||||||
|
|
||||||
|
if (env_path_list[0] == NULL)
|
||||||
|
{
|
||||||
|
free (env_path_list);
|
||||||
|
env_path_list = (void *) -1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
env_path_list = (void *) -1;
|
env_path_list = (void *) -1;
|
||||||
|
Loading…
Reference in New Issue
Block a user