diff --git a/ext/standard/string.c b/ext/standard/string.c index b422cf94c3f..8c4c26d876b 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;