diff options
author | Fangrui Song <i@maskray.me> | 2019-05-12 09:50:50 +0800 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2019-05-12 09:51:45 -0400 |
commit | f450c150d31730b18a145cca17150427cf3f20e6 (patch) | |
tree | 7e86ae066e34d9d810ba1de1619605ffbfeb9d9f /ldso/dynlink.c | |
parent | bdb0817599325e6ca6838717dfe18290695a59a2 (diff) | |
download | musl-f450c150d31730b18a145cca17150427cf3f20e6.tar.gz musl-f450c150d31730b18a145cca17150427cf3f20e6.tar.bz2 musl-f450c150d31730b18a145cca17150427cf3f20e6.tar.xz musl-f450c150d31730b18a145cca17150427cf3f20e6.zip |
remove unused struct dso members from dynlink.c
maintainer's note: commit 9d44b6460ab603487dab4d916342d9ba4467e6b9
removed their use.
Diffstat (limited to 'ldso/dynlink.c')
-rw-r--r-- | ldso/dynlink.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ldso/dynlink.c b/ldso/dynlink.c index 42a5470d..ad0cdba2 100644 --- a/ldso/dynlink.c +++ b/ldso/dynlink.c @@ -86,7 +86,6 @@ struct dso { size_t relro_start, relro_end; uintptr_t *new_dtv; unsigned char *new_tls; - volatile int new_dtv_idx, new_tls_idx; struct td_index *td_index; struct dso *fini_next; char *shortname; |