From 0276ea51875bab37be01a4dc5e5a047c5698c571 Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Wed, 17 Oct 2018 11:42:43 +0300 Subject: [PATCH] Added type cast --- Zend/zend_compile.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zend/zend_compile.h b/Zend/zend_compile.h index 034199f2e25..4a597dd4676 100644 --- a/Zend/zend_compile.h +++ b/Zend/zend_compile.h @@ -665,7 +665,7 @@ struct _zend_execute_data { ZEND_MAP_PTR_GET((op_array)->run_time_cache) #define ZEND_OP_ARRAY_EXTENSION(op_array, handle) \ - RUN_TIME_CACHE(op_array)[handle] + ((void**)RUN_TIME_CACHE(op_array))[handle] #if ZEND_EX_USE_RUN_TIME_CACHE