mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Update.
* sysdeps/generic/ldsodefs.h (struct rtld_global): Move dl_debug_fd to rtld_global_ro. * elf/rtld.c: Use GLRO instead of GL for dl_debug_fd. * elf/dl-misc.c: Likewise.
This commit is contained in:
@ -276,7 +276,7 @@ _dl_debug_printf (const char *fmt, ...)
|
||||
va_list arg;
|
||||
|
||||
va_start (arg, fmt);
|
||||
_dl_debug_vdprintf (GL(dl_debug_fd), 1, fmt, arg);
|
||||
_dl_debug_vdprintf (GLRO(dl_debug_fd), 1, fmt, arg);
|
||||
va_end (arg);
|
||||
}
|
||||
INTDEF(_dl_debug_printf)
|
||||
@ -289,7 +289,7 @@ _dl_debug_printf_c (const char *fmt, ...)
|
||||
va_list arg;
|
||||
|
||||
va_start (arg, fmt);
|
||||
_dl_debug_vdprintf (GL(dl_debug_fd), -1, fmt, arg);
|
||||
_dl_debug_vdprintf (GLRO(dl_debug_fd), -1, fmt, arg);
|
||||
va_end (arg);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user