mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
fix cast
This commit is contained in:
parent
db546462b6
commit
70003624fa
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ void init_op_array(zend_op_array *op_array, int initial_ops_size)
|
|||
}
|
||||
#endif
|
||||
|
||||
op_array->refcount = (int *) emalloc(sizeof(int));
|
||||
op_array->refcount = (zend_uint *) emalloc(sizeof(int));
|
||||
*op_array->refcount = 1;
|
||||
op_array->size = initial_ops_size;
|
||||
op_array->last = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue