diff options
author | Florian Weimer <fweimer@redhat.com> | 2019-11-12 12:41:34 +0100 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2019-11-12 13:54:30 +0100 |
commit | cba932a5a9e91cffd7f4172d7e91f9b2efb1f84b (patch) | |
tree | 82fb283a15d1ff654e6b54d86008917386a03da3 /nptl_db/structs.def | |
parent | 42b926d303e571d5f9a4e97ffdb8e05d1eabae66 (diff) | |
download | glibc-cba932a5a9e91cffd7f4172d7e91f9b2efb1f84b.tar.gz glibc-cba932a5a9e91cffd7f4172d7e91f9b2efb1f84b.tar.xz glibc-cba932a5a9e91cffd7f4172d7e91f9b2efb1f84b.zip |
slotinfo in struct dtv_slotinfo_list should be flexible array [BZ #25097]
GCC 10 will warn about subscribing inner length zero arrays. Use a GCC extension in csu/libc-tls.c to allocate space for the static_slotinfo variable. Adjust nptl_db so that the type description machinery does not attempt to determine the size of the flexible array member slotinfo. Change-Id: I51be146a7857186a4ede0bb40b332509487bdde8
Diffstat (limited to 'nptl_db/structs.def')
-rw-r--r-- | nptl_db/structs.def | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl_db/structs.def b/nptl_db/structs.def index f834d1d74c..a3aa71aade 100644 --- a/nptl_db/structs.def +++ b/nptl_db/structs.def @@ -110,7 +110,7 @@ DB_RTLD_GLOBAL_FIELD (dl_tls_dtv_slotinfo_list) DB_STRUCT (dtv_slotinfo_list) DB_STRUCT_FIELD (dtv_slotinfo_list, len) DB_STRUCT_FIELD (dtv_slotinfo_list, next) -DB_STRUCT_ARRAY_FIELD (dtv_slotinfo_list, slotinfo) +DB_STRUCT_FLEXIBLE_ARRAY (dtv_slotinfo_list, slotinfo) DB_STRUCT (dtv_slotinfo) DB_STRUCT_FIELD (dtv_slotinfo, gen) |