]> granicus.if.org Git - php/commitdiff
fix ZTS build
authorAntony Dovgal <tony2001@php.net>
Mon, 1 Jun 2009 14:03:24 +0000 (14:03 +0000)
committerAntony Dovgal <tony2001@php.net>
Mon, 1 Jun 2009 14:03:24 +0000 (14:03 +0000)
ext/json/json.c
ext/json/php_json.h

index f9efc342171086b883f189d5bab4db16b3f59b83..c261167df32a7767b2c5e1843a9bf325bb156386 100644 (file)
@@ -393,7 +393,7 @@ PHPAPI void php_json_encode(smart_str *buf, zval *val TSRMLS_DC) /* {{{ */
 }
 /* }}} */
 
-PHPAPI void php_json_decode(zval *return_value, char *buf, int buf_len, zend_bool assoc) /* {{{ */
+PHPAPI void php_json_decode(zval *return_value, char *buf, int buf_len, zend_bool assoc TSRMLS_DC) /* {{{ */
 {
        unsigned short *utf16;
        int utf16_len;
@@ -487,7 +487,7 @@ static PHP_FUNCTION(json_decode)
         RETURN_NULL();
     }
 
-       php_json_decode(return_value, parameter, parameter_len, assoc);
+       php_json_decode(return_value, parameter, parameter_len, assoc TSRMLS_CC);
 }
 /* }}} */
 
index ed2d48604644420e829468f3531125c171699a9c..c022be7e58d9a1ce40f4ef71066a57b79d36cf37 100644 (file)
@@ -45,7 +45,7 @@ extern zend_module_entry json_module_entry;
 #endif
 
 PHPAPI void php_json_encode(smart_str *buf, zval *val TSRMLS_DC);
-PHPAPI void php_json_decode(zval *return_value, char *buf, int buf_len, zend_bool assoc);
+PHPAPI void php_json_decode(zval *return_value, char *buf, int buf_len, zend_bool assoc TSRMLS_DC);
 
 #endif  /* PHP_JSON_H */