Skip to content

Commit 2e21483

Browse files
committed
Zend/zend_execute.c: use uint32_t type instead of int type
1 parent 1254ce0 commit 2e21483

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Zend/zend_execute.c

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4901,9 +4901,7 @@ static void cleanup_unfinished_calls(zend_execute_data *execute_data, uint32_t o
49014901

49024902
static void cleanup_live_vars(zend_execute_data *execute_data, uint32_t op_num, uint32_t catch_op_num) /* {{{ */
49034903
{
4904-
int i;
4905-
4906-
for (i = 0; i < EX(func)->op_array.last_live_range; i++) {
4904+
for (uint32_t i = 0; i < EX(func)->op_array.last_live_range; i++) {
49074905
const zend_live_range *range = &EX(func)->op_array.live_range[i];
49084906
if (range->start > op_num) {
49094907
/* further blocks will not be relevant... */

0 commit comments

Comments
 (0)