Skip to content

Commit d147fa6

Browse files
committed
Zend/zend_execute.c: use uint32_t type instead of int type
1 parent 22b1756 commit d147fa6

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
@@ -4905,9 +4905,7 @@ static void cleanup_unfinished_calls(zend_execute_data *execute_data, uint32_t o
49054905

49064906
static void cleanup_live_vars(zend_execute_data *execute_data, uint32_t op_num, uint32_t catch_op_num) /* {{{ */
49074907
{
4908-
int i;
4909-
4910-
for (i = 0; i < EX(func)->op_array.last_live_range; i++) {
4908+
for (uint32_t i = 0; i < EX(func)->op_array.last_live_range; i++) {
49114909
const zend_live_range *range = &EX(func)->op_array.live_range[i];
49124910
if (range->start > op_num) {
49134911
/* further blocks will not be relevant... */

0 commit comments

Comments
 (0)