Skip to content

Commit f8656fa

Browse files
committed
Zend: use uint32_t type instead of int for extended_value counter
1 parent f06e79e commit f8656fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Zend/zend_execute.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4935,7 +4935,7 @@ static void cleanup_live_vars(zend_execute_data *execute_data, uint32_t op_num,
49354935
if (last->opcode == ZEND_ROPE_INIT) {
49364936
zend_string_release_ex(*rope, 0);
49374937
} else {
4938-
int j = last->extended_value;
4938+
uint32_t j = last->extended_value;
49394939
do {
49404940
zend_string_release_ex(rope[j], 0);
49414941
} while (j--);

0 commit comments

Comments
 (0)