From: Sascha Schumann Date: Mon, 8 Jan 2001 23:13:57 +0000 (+0000) Subject: Fix ZTS build (broken by iconv-related changes). X-Git-Tag: php-4.0.5RC1~661 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6a6317a403a205f02c6afbcf99bc8e254c20da56;p=php Fix ZTS build (broken by iconv-related changes). --- diff --git a/ext/standard/string.c b/ext/standard/string.c index b422cf94c3..8c4c26d876 100644 --- a/ext/standard/string.c +++ b/ext/standard/string.c @@ -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;