summaryrefslogtreecommitdiff
path: root/ext/json/JSON_parser.h
diff options
context:
space:
mode:
authorXinchen Hui <laruence@gmail.com>2014-05-05 10:34:04 +0800
committerXinchen Hui <laruence@gmail.com>2014-05-05 10:34:04 +0800
commitcf15e94e0797bbafe89efec5176a248839250909 (patch)
treef414e70269e062a67fa9b7b9b08cab43a470b290 /ext/json/JSON_parser.h
parent41f68894366e1156191387034fc53286d9fec747 (diff)
parentb30c7fe2639aba8453a4808a285fc2acea36d7bd (diff)
downloadphp-git-cf15e94e0797bbafe89efec5176a248839250909.tar.gz
Merge branch 'refactoring2' of github.com:zendtech/php into refactoring2
Diffstat (limited to 'ext/json/JSON_parser.h')
-rw-r--r--ext/json/JSON_parser.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/json/JSON_parser.h b/ext/json/JSON_parser.h
index 8671765b4d..3df999c5f3 100644
--- a/ext/json/JSON_parser.h
+++ b/ext/json/JSON_parser.h
@@ -15,8 +15,8 @@ typedef struct JSON_parser_struct {
int top;
int error_code;
int* stack;
- zval **the_zstack;
- zval *the_static_zstack[JSON_PARSER_DEFAULT_DEPTH];
+ zval *the_zstack;
+ zval the_static_zstack[JSON_PARSER_DEFAULT_DEPTH];
} * JSON_parser;
enum error_codes {