File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 2
2
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3
3
?? ??? ????, PHP 7.4.0RC6
4
4
5
+ - Core:
6
+ . Fixed bug #78768 (redefinition of typedef zend_property_info). (Nikita)
7
+
5
8
- Standard:
6
9
. Fixed bug #77930 (stream_copy_to_stream should use mmap more often).
7
10
(Nikita)
Original file line number Diff line number Diff line change @@ -382,16 +382,14 @@ struct _zend_resource {
382
382
void * ptr ;
383
383
};
384
384
385
- typedef struct _zend_property_info zend_property_info ;
386
-
387
385
typedef struct {
388
386
size_t num ;
389
387
size_t num_allocated ;
390
- zend_property_info * ptr [1 ];
388
+ struct _zend_property_info * ptr [1 ];
391
389
} zend_property_info_list ;
392
390
393
391
typedef union {
394
- zend_property_info * ptr ;
392
+ struct _zend_property_info * ptr ;
395
393
uintptr_t list ;
396
394
} zend_property_info_source_list ;
397
395
You can’t perform that action at this time.
0 commit comments