. Fixed bug #70223 (Incrementing value returned by magic getter). (Laruence)
. Fixed bug #70215 (Segfault when __invoke is static). (Bob)
. Fixed bug #70207 (Finally is broken with opcache). (Laruence, Dmitry)
+ . Fixed bug #70173 (ZVAL_COPY_VALUE_EX broken for 32bit Solaris Sparc).
+ (Laruence, cmb)
- CLI server:
. Fixed bug #66606 (Sets HTTP_CONTENT_TYPE but not CONTENT_TYPE).
zend_class_entry *ce;
zend_function *func;
struct {
- ZEND_ENDIAN_LOHI(
- uint32_t w1,
- uint32_t w2)
+ uint32_t w1;
+ uint32_t w2;
} ww;
} zend_value;
}
#if SIZEOF_SIZE_T == 4
-# ifdef WORDS_BIGENDIAN
-# define ZVAL_COPY_VALUE_EX(z, v, gc, t) \
- do { \
- uint32_t _w1 = v->value.ww.w1; \
- Z_COUNTED_P(z) = gc; \
- z->value.ww.w1 = _w1; \
- Z_TYPE_INFO_P(z) = t; \
- } while (0)
-# else
-# define ZVAL_COPY_VALUE_EX(z, v, gc, t) \
+# define ZVAL_COPY_VALUE_EX(z, v, gc, t) \
do { \
uint32_t _w2 = v->value.ww.w2; \
Z_COUNTED_P(z) = gc; \
z->value.ww.w2 = _w2; \
Z_TYPE_INFO_P(z) = t; \
} while (0)
-# endif
#elif SIZEOF_SIZE_T == 8
# define ZVAL_COPY_VALUE_EX(z, v, gc, t) \
do { \