Skip to content

Commit 92eeeb9

Browse files
committed
fix extra * from cast
1 parent 10e3747 commit 92eeeb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/opcache/jit/zend_jit_x86.dasc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2943,7 +2943,7 @@ static int zend_jit_setup(void)
29432943
/* To find offset of "_tsrm_ls_cache" in TLS segment we perform a linear scan of local TLS memory */
29442944
/* Probably, it might be better solution */
29452945
do {
2946-
void ***tls_mem = ((void***)__readfsdword(0x2c))[_tls_index];
2946+
void ***tls_mem = ((void**)__readfsdword(0x2c))[_tls_index];
29472947
void *val = _tsrm_ls_cache;
29482948
size_t offset = 0;
29492949
size_t size = (char*)&_tls_end - (char*)&_tls_start;

0 commit comments

Comments
 (0)