diff options
author | Xinchen Hui <laruence@php.net> | 2015-07-14 18:58:43 +0800 |
---|---|---|
committer | Xinchen Hui <laruence@php.net> | 2015-07-14 18:59:36 +0800 |
commit | 453ec91dfe0ce53e1867241625958f27fbee17d2 (patch) | |
tree | 6d523ef175c67337bb0681d96525c31016a8a4f1 | |
parent | ad929bf68b0f43f38a8a8a2b2b01b64359ffbbee (diff) | |
download | php-git-453ec91dfe0ce53e1867241625958f27fbee17d2.tar.gz |
Fixed bug #70067 (Cross-compile failure in opcache when SIZEOF_ZEND_LONG < SIZEOF_SIZE_T)
-rw-r--r-- | ext/opcache/zend_accelerator_util_funcs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/opcache/zend_accelerator_util_funcs.c b/ext/opcache/zend_accelerator_util_funcs.c index 715ef07b5f..e20f3d16f6 100644 --- a/ext/opcache/zend_accelerator_util_funcs.c +++ b/ext/opcache/zend_accelerator_util_funcs.c @@ -30,7 +30,7 @@ # define accel_xlat_set(old, new) zend_hash_index_add_new_ptr(&ZCG(bind_hash), (zend_ulong)(zend_uintptr_t)(old), (new)) # define accel_xlat_get(old) zend_hash_index_find_ptr(&ZCG(bind_hash), (zend_ulong)(zend_uintptr_t)(old)) #else -# define accel_xlat_set(old, new) (zend_hash_str_add_new_ptr(&ZCG(bind_hash), (char*)&(old), sizeof(void*), (zend_ulong)(zend_uintptr_t)(old), (void**)&(new)) +# define accel_xlat_set(old, new) zend_hash_str_add_new_ptr(&ZCG(bind_hash), (char*)&(old), sizeof(void*), (old)) # define accel_xlat_get(old) zend_hash_str_find_ptr(&ZCG(bind_hash), (char*)&(old), sizeof(void*)) #endif |