mirror of
https://github.com/php/php-src.git
synced 2025-08-16 22:18:50 +02:00
64bit long fix
This commit is contained in:
parent
3940c673e3
commit
aa40a02de8
1 changed files with 2 additions and 1 deletions
|
@ -1731,7 +1731,8 @@ PHP_FUNCTION(ob_iconv_handler)
|
||||||
char *out_buffer, *content_type, *mimetype = NULL, *s;
|
char *out_buffer, *content_type, *mimetype = NULL, *s;
|
||||||
zval *zv_string;
|
zval *zv_string;
|
||||||
unsigned int out_len;
|
unsigned int out_len;
|
||||||
int status, mimetype_alloced = 0;
|
int mimetype_alloced = 0;
|
||||||
|
long status;
|
||||||
|
|
||||||
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "zl", &zv_string, &status) == FAILURE)
|
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "zl", &zv_string, &status) == FAILURE)
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue