Skip to content

Commit 41d7e4c

Browse files
committed
Zend: Convert _zend_op_array.cache_size field to uint32_t
1 parent a2b1162 commit 41d7e4c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Zend/zend_compile.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -530,9 +530,9 @@ struct _zend_op_array {
530530
const zend_property_info *prop_info; /* The corresponding prop_info if this is a hook. */
531531
/* END of common elements */
532532

533-
int cache_size; /* number of run_time_cache_slots * sizeof(void*) */
534-
int last_var; /* number of CV variables */
535-
uint32_t last; /* number of opcodes */
533+
uint32_t cache_size; /* number of run_time_cache_slots * sizeof(void*) */
534+
int last_var; /* number of CV variables */
535+
uint32_t last; /* number of opcodes */
536536

537537
zend_op *opcodes;
538538
ZEND_MAP_PTR_DEF(HashTable *, static_variables_ptr);

0 commit comments

Comments
 (0)