Skip to content

Commit 11ce417

Browse files
committed
Merge branch 'PHP-7.4'
* PHP-7.4: Fixed bug #78768
2 parents 5ca4657 + 944c1cf commit 11ce417

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

Zend/zend_types.h

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -397,16 +397,14 @@ struct _zend_resource {
397397
void *ptr;
398398
};
399399

400-
typedef struct _zend_property_info zend_property_info;
401-
402400
typedef struct {
403401
size_t num;
404402
size_t num_allocated;
405-
zend_property_info *ptr[1];
403+
struct _zend_property_info *ptr[1];
406404
} zend_property_info_list;
407405

408406
typedef union {
409-
zend_property_info *ptr;
407+
struct _zend_property_info *ptr;
410408
uintptr_t list;
411409
} zend_property_info_source_list;
412410

0 commit comments

Comments
 (0)