From 6a6317a403a205f02c6afbcf99bc8e254c20da56 Mon Sep 17 00:00:00 2001 From: Sascha Schumann Date: Mon, 8 Jan 2001 23:13:57 +0000 Subject: [PATCH] Fix ZTS build (broken by iconv-related changes). --- ext/standard/string.c | 2 ++ 1 file changed, 2 insertions(+) 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; -- 2.50.1