[v3,18/23] aarch64: Use l_searchlist.r_list for gcs
Checks
Context |
Check |
Description |
redhat-pt-bot/TryBot-apply_patch |
success
|
Patch applied to master at the time it was sent
|
linaro-tcwg-bot/tcwg_glibc_build--master-aarch64 |
success
|
Build passed
|
linaro-tcwg-bot/tcwg_glibc_check--master-aarch64 |
success
|
Test passed
|
linaro-tcwg-bot/tcwg_glibc_build--master-arm |
success
|
Build passed
|
linaro-tcwg-bot/tcwg_glibc_check--master-arm |
success
|
Test passed
|
Commit Message
From: Szabolcs Nagy <szabolcs.nagy@arm.com>
Allows using the same function for static exe.
---
sysdeps/aarch64/dl-gcs.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Comments
Hi Andreas
On Wed, Oct 23, 2024 at 11:07:10AM +0200, Andreas Schwab wrote:
> Please fold into 17.
Thank you for your comment. I've addressed this in v4:
https://inbox.sourceware.org/libc-alpha/20241129163721.2385847-1-yury.khrustalev@arm.com/
Kind regards,
Yury
@@ -55,5 +55,5 @@ _dl_gcs_check (struct link_map *l, const char *program)
check_gcs (l, program);
for (unsigned int i = 0; i < l->l_searchlist.r_nlist; i++)
- check_gcs (l->l_initfini[i], program);
+ check_gcs (l->l_searchlist.r_list[i], program);
}