From: Nikita Popov Date: Thu, 22 Aug 2013 09:46:51 +0000 (+0200) Subject: Fix intl build X-Git-Tag: php-5.5.4RC1~23 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=592677d810feba294c962a1b0191adeea08b6d46;p=php Fix intl build Turns out that you can't use implicit void pointer casts if intl is compiled. --- diff --git a/Zend/zend_execute.h b/Zend/zend_execute.h index 35c5bcaef1..ff0758772e 100644 --- a/Zend/zend_execute.h +++ b/Zend/zend_execute.h @@ -293,7 +293,7 @@ static zend_always_inline void zend_vm_stack_clear_multiple(int nested TSRMLS_DC void **end = p - (int)(zend_uintptr_t)*p; while (p != end) { - zval *q = *(--p); + zval *q = (zval *) *(--p); *p = NULL; i_zval_ptr_dtor(q ZEND_FILE_LINE_CC); }