mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-21 20:40:05 +00:00
Remove dead DL_DST_REQ_STATIC code.
This commit is contained in:
parent
638faeb6fe
commit
d1d5471579
@ -1,3 +1,9 @@
|
||||
2013-06-21 Maciej W. Rozycki <macro@codesourcery.com>
|
||||
|
||||
* elf/dl-dst.h (DL_DST_REQUIRED): Remove call to
|
||||
DL_DST_REQ_STATIC.
|
||||
(DL_DST_REQ_STATIC): Remove macro.
|
||||
|
||||
2013-06-21 Joseph Myers <joseph@codesourcery.com>
|
||||
|
||||
[BZ #7006]
|
||||
|
13
elf/dl-dst.h
13
elf/dl-dst.h
@ -55,7 +55,6 @@
|
||||
First get the origin string if it is not available yet. \
|
||||
This can only happen for the map of the executable or, when \
|
||||
auditing, in ld.so. */ \
|
||||
DL_DST_REQ_STATIC (l) \
|
||||
if ((l)->l_origin == NULL) \
|
||||
{ \
|
||||
assert ((l)->l_name[0] == '\0' || IS_RTLD (l)); \
|
||||
@ -73,15 +72,3 @@
|
||||
} \
|
||||
\
|
||||
__len; })
|
||||
|
||||
#ifdef SHARED
|
||||
# define DL_DST_REQ_STATIC(l) /* nothing */
|
||||
#else
|
||||
# define DL_DST_REQ_STATIC(l) \
|
||||
if ((l) == NULL) \
|
||||
{ \
|
||||
const char *origin = _dl_get_origin (); \
|
||||
dst_len = (origin && origin != (char *) -1 ? strlen (origin) : 0); \
|
||||
} \
|
||||
else
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user