Skip to content

Commit 0ec6bd2

Browse files
committed
Zend/zend_execute.c: use uint32_t type instead of int type
1 parent 651467c commit 0ec6bd2

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

48944894
static void cleanup_live_vars(zend_execute_data *execute_data, uint32_t op_num, uint32_t catch_op_num) /* {{{ */
48954895
{
4896-
int i;
4897-
4898-
for (i = 0; i < EX(func)->op_array.last_live_range; i++) {
4896+
for (uint32_t i = 0; i < EX(func)->op_array.last_live_range; i++) {
48994897
const zend_live_range *range = &EX(func)->op_array.live_range[i];
49004898
if (range->start > op_num) {
49014899
/* further blocks will not be relevant... */

0 commit comments

Comments
 (0)