Skip to content

Commit da049e7

Browse files
committed
fix extra * in cast
1 parent 81b060d commit da049e7

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
@@ -2930,7 +2930,7 @@ static int zend_jit_setup(void)
29302930
/* To find offset of "_tsrm_ls_cache" in TLS segment we perform a linear scan of local TLS memory */
29312931
/* Probably, it might be better solution */
29322932
do {
2933-
void ***tls_mem = ((void***)__readfsdword(0x2c))[_tls_index];
2933+
void ***tls_mem = ((void**)__readfsdword(0x2c))[_tls_index];
29342934
void *val = _tsrm_ls_cache;
29352935
size_t offset = 0;
29362936
size_t size = (char*)&_tls_end - (char*)&_tls_start;

0 commit comments

Comments
 (0)