mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
ext/ffi: Use 64bit integer to hold array length
This commit is contained in:
parent
73a31979e2
commit
2ca0c2fd10
1 changed files with 1 additions and 1 deletions
|
@ -6436,7 +6436,7 @@ static zend_result zend_ffi_validate_array_element_type(zend_ffi_type *type) /*
|
||||||
|
|
||||||
void zend_ffi_make_array_type(zend_ffi_dcl *dcl, zend_ffi_val *len) /* {{{ */
|
void zend_ffi_make_array_type(zend_ffi_dcl *dcl, zend_ffi_val *len) /* {{{ */
|
||||||
{
|
{
|
||||||
int length = 0;
|
int64_t length = 0;
|
||||||
zend_ffi_type *element_type;
|
zend_ffi_type *element_type;
|
||||||
zend_ffi_type *type;
|
zend_ffi_type *type;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue