From c2173c16d038cf99c5eff12ddc76f99d46a35c57 Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Thu, 17 Nov 2016 14:05:22 +0300 Subject: [PATCH] Fixed 64-bit build --- ext/opcache/zend_accelerator_module.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ext/opcache/zend_accelerator_module.c b/ext/opcache/zend_accelerator_module.c index 481660cb11..b6c8e13fd8 100644 --- a/ext/opcache/zend_accelerator_module.c +++ b/ext/opcache/zend_accelerator_module.c @@ -107,7 +107,7 @@ static ZEND_INI_MH(OnUpdateMemoryConsumption) #else char *base = (char *) ts_resource(*((int *) mh_arg2)); #endif - zend_long overflow; + zend_long megabyte, overflow; double dummy; /* keep the compiler happy */ @@ -132,7 +132,8 @@ static ZEND_INI_MH(OnUpdateMemoryConsumption) ini_entry->value = zend_string_init(new_new_value, 1, 1); } - ZEND_SIGNED_MULTIPLY_LONG(memsize, 1024 * 1024, *p, dummy, overflow); + megabyte = 1024 * 1024; + ZEND_SIGNED_MULTIPLY_LONG(memsize, megabyte, *p, dummy, overflow); if (UNEXPECTED(overflow)) { *p = ZEND_ULONG_MAX; } -- 2.40.0