From 2039a21b98d56437c537cf4b718c4af1eb7b44df Mon Sep 17 00:00:00 2001 From: Gina Peter Banyard Date: Tue, 29 Apr 2025 11:29:58 +0100 Subject: [PATCH] Zend: Change _zend_op_array.cache_size to be of type uint32_t All code assumes this already and this removes various signed/unsigned int mismatches --- Zend/zend_compile.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zend/zend_compile.h b/Zend/zend_compile.h index aec72743f6ca9..d5931b06ae650 100644 --- a/Zend/zend_compile.h +++ b/Zend/zend_compile.h @@ -523,7 +523,7 @@ struct _zend_op_array { const zend_property_info *prop_info; /* The corresponding prop_info if this is a hook. */ /* END of common elements */ - int cache_size; /* number of run_time_cache_slots * sizeof(void*) */ + uint32_t cache_size; /* number of run_time_cache_slots * sizeof(void*) */ int last_var; /* number of CV variables */ uint32_t last; /* number of opcodes */