]> granicus.if.org Git - php/commitdiff
Fix ZTS build (broken by iconv-related changes).
authorSascha Schumann <sas@php.net>
Mon, 8 Jan 2001 23:13:57 +0000 (23:13 +0000)
committerSascha Schumann <sas@php.net>
Mon, 8 Jan 2001 23:13:57 +0000 (23:13 +0000)
ext/standard/string.c

index b422cf94c3fe1e970c0c6e0de50e01750477400e..8c4c26d876bec259e2f88b857c09576e1f4d4963 100644 (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;