fix json globals

This commit is contained in:
Michael Wallner 2015-02-09 17:57:05 +01:00
parent 9ff3800b79
commit 09a3e7377a
2 changed files with 1 additions and 2 deletions

View file

@ -39,8 +39,6 @@
#define PHP_JSON_DOUBLE_MAX_LENGTH 1080
#endif
ZEND_DECLARE_MODULE_GLOBALS(json)
static const char digits[] = "0123456789abcdef";
static void php_json_escape_string(smart_str *buf, char *s, size_t len, int options);

View file

@ -80,6 +80,7 @@ ZEND_BEGIN_MODULE_GLOBALS(json)
php_json_error_code error_code;
ZEND_END_MODULE_GLOBALS(json)
ZEND_EXTERN_MODULE_GLOBALS(json);
#ifdef ZTS
# define JSON_G(v) ZEND_TSRMG(json_globals_id, zend_json_globals *, v)