[GIT-PULLS] [php-src] PR #22801: ext/opcache: zend_jit_resolve_tsrm_ls_cache_offsets() TEXTREL from ba…
[email protected] (devnexen) Sun, 19 Jul 2026 04:06:24 +0000
| Newsgroups | php.git-pulls |
|---|---|
| Message-ID | <[email protected]> |
Pull Request: https://github.com/php/php-src/pull/22801 Author: devnexen …re __tls_get_addr call. Fix GH-22693 The x86_64 General Dynamic TLS sequence called __tls_get_addr without @PLT, which could emit a PC-relative relocation against the external symbol landing in read-only .text, producing a DT_TEXTREL and a linker warning about a possible runtime segfault. Routing the call through the PLT matches the x86-64 TLS ABI canonical sequence and the already correct i386 variant, without changing the emitted instruction bytes.