1
0
mirror of https://github.com/php/php-src.git synced 2026-04-13 02:52:48 +02:00

Fix ZTS build (broken by iconv-related changes).

This commit is contained in:
Sascha Schumann
2001-01-08 23:13:57 +00:00
parent 145f60a485
commit 6a6317a403

View File

@@ -3078,6 +3078,7 @@ PHP_FUNCTION(ob_iconv_handler)
int coding;
char *out_buffer;
zval **zv_string;
BLS_FETCH();
if (ZEND_NUM_ARGS()!=1 || zend_get_parameters_ex(1, &zv_string)==FAILURE) {
ZEND_WRONG_PARAM_COUNT();
@@ -3101,6 +3102,7 @@ PHP_FUNCTION(ob_iconv_handler)
PHP_FUNCTION(iconv_set_encoding)
{
zval **int_charset, **out_charset;
BLS_FETCH();
if (ZEND_NUM_ARGS() != 2 || zend_get_parameters_ex(2, &int_charset, &out_charset) == FAILURE) {
WRONG_PARAM_COUNT;