mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-22 02:40:08 +00:00
Avoid local PLTs.
This commit is contained in:
parent
139ee080b6
commit
0f622686af
@ -15,11 +15,11 @@
|
||||
static void
|
||||
close_all_fds (void)
|
||||
{
|
||||
DIR *dir = opendir ("/proc/self/fd");
|
||||
DIR *dir = __opendir ("/proc/self/fd");
|
||||
if (dir != NULL)
|
||||
{
|
||||
struct dirent64 *d;
|
||||
while ((d = readdir64 (dir)) != NULL)
|
||||
while ((d = __readdir64 (dir)) != NULL)
|
||||
if (isdigit (d->d_name[0]))
|
||||
{
|
||||
char *endp;
|
||||
@ -28,7 +28,7 @@ close_all_fds (void)
|
||||
close_not_cancel_no_status (fd);
|
||||
}
|
||||
|
||||
closedir (dir);
|
||||
__closedir (dir);
|
||||
|
||||
int nullfd = open_not_cancel_2 (_PATH_DEVNULL, O_RDONLY);
|
||||
assert (nullfd == STDIN_FILENO);
|
||||
|
Loading…
Reference in New Issue
Block a user