File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 2
2
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3
3
?? ??? ????, PHP 7.3.0RC1
4
4
5
+ - Core:
6
+ . Fixed bug #76820 (Z_COPYABLE invalid definition). (mvdwerve, cmb)
7
+
5
8
- Standard:
6
9
. Fixed bug #76803 (ftruncate changes file pointer). (Anatol)
7
10
. Fixed bug #76818 (Memory corruption and segfault). (Remi)
Original file line number Diff line number Diff line change @@ -590,7 +590,7 @@ static zend_always_inline uint32_t zval_gc_info(uint32_t gc_type_info) {
590
590
#define Z_REFCOUNTED_P (zval_p ) Z_REFCOUNTED(*(zval_p))
591
591
592
592
/* deprecated: (COPYABLE is the same as IS_ARRAY) */
593
- #define Z_COPYABLE (zval ) (( Z_TYPE(zval) == IS_ARRAY)
593
+ #define Z_COPYABLE (zval ) (Z_TYPE(zval) == IS_ARRAY)
594
594
#define Z_COPYABLE_P (zval_p ) Z_COPYABLE(*(zval_p))
595
595
596
596
/* deprecated: (IMMUTABLE is the same as IS_ARRAY && !REFCOUNTED) */
@@ -610,7 +610,7 @@ static zend_always_inline uint32_t zval_gc_info(uint32_t gc_type_info) {
610
610
#define Z_OPT_REFCOUNTED_P (zval_p ) Z_OPT_REFCOUNTED(*(zval_p))
611
611
612
612
/* deprecated: (COPYABLE is the same as IS_ARRAY) */
613
- #define Z_OPT_COPYABLE (zval ) (( Z_OPT_TYPE(zval) == IS_ARRAY)
613
+ #define Z_OPT_COPYABLE (zval ) (Z_OPT_TYPE(zval) == IS_ARRAY)
614
614
#define Z_OPT_COPYABLE_P (zval_p ) Z_OPT_COPYABLE(*(zval_p))
615
615
616
616
#define Z_OPT_ISREF (zval ) (Z_OPT_TYPE(zval) == IS_REFERENCE)
You can’t perform that action at this time.
0 commit comments