1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Zend: use uint32_t type instead of int for extended_value counter

This commit is contained in:
Gina Peter Banyard
2025-10-22 22:56:48 +01:00
parent f06e79e6f4
commit f8656fae35

View File

@@ -4935,7 +4935,7 @@ static void cleanup_live_vars(zend_execute_data *execute_data, uint32_t op_num,
if (last->opcode == ZEND_ROPE_INIT) {
zend_string_release_ex(*rope, 0);
} else {
int j = last->extended_value;
uint32_t j = last->extended_value;
do {
zend_string_release_ex(rope[j], 0);
} while (j--);